+ 2
what is the different between ?
list =[101,23,403,54,45]; list.sort(); print(list); and list =[101,23,403,54,45]; list=
5 Respostas
+ 4
The future is now thanks to science[INACTIVE]
I think he is talking about difference between
list =[101,23,403,54,45];
list.sort();
print(list);
and
list =[101,23,403,54,45];
print (list.sort())
P r i n c e N a i n am I right?
+ 8
Your question is unclear. Can you please clear your question and also please attach your code on code playground? Thanks.
https://www.sololearn.com/post/75089/?ref=app
+ 3
P r i n c e N a i n
You can see explanation here
https://www.sololearn.com/Discuss/2800453/?ref=app
+ 2
Yes right
+ 2
Yes