You are viewing a single comment's thread from:
RE: Learn Python Series (#6) - Handling Lists Part 2
Thank you for the contribution. It has been approved.
Great tutorial once again, but I was wondering what the difference between list.sort()
and sorted()
is (when would you use one over the other)?
You can contact us on Discord.
[utopian-moderator]
list.sort() modifies the existing list, while sorted() returns a new list without modifying the given list.