We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while
l.sort()
works in place (modifying the original list),
sorted(l)
returns a new list.
Even when in same cases is the same using one or the other, they are doing different things.
A fair comparison would be to replace the first way with:
def a(): l = [0, 8, 6, 4, 2, 1, 3, 5, 7, 9] copy = list(l) copy.sort() return copy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
while
works in place (modifying the original list),
returns a new list.
Even when in same cases is the same using one or the other, they are doing different things.
A fair comparison would be to replace the first way with:
The text was updated successfully, but these errors were encountered: