python3 sorted code example
Example 1: python sort comparator
sorted("This is a test string from Andrew".split(), key=str.lower)
['a', 'Andrew', 'from', 'is', 'string', 'test', 'This']
sorted(student_tuples, key=lambda student: student[2])
[('dave', 'B', 10), ('jane', 'B', 12), ('john', 'A', 15)]
Example 2: python sort
nums = [4,8,5,2,1]
sorted_nums = sorted(nums)
print(sorted_nums)
print(nums)
nums.sort()
print(nums)
Example 3: sorted python
var = sorted(old_var)
Example 4: how to use sorted function in python
var_array = [5,2,4,3,1]
var_sort = sorted(var_array)