yshshrm / Data-Structures-And-Algorithms-Hacktoberfest18

List of data structures and algorithms. Feel free to contribute under Hacktoberfest '18!
204 stars 1.1k forks source link

strings sorting #1659

Open agrawal-shivani opened 4 years ago

Bhadreshwara commented 4 years ago

The Difference between sorted() and sort() in Python.

Sorting Numbers: >> numbers = [4, 9, 2, 1] >> sorted(numbers) [1, 2, 4, 9] >> numbers [4, 9, 2, 1]