Result Size: 625 x 571
demo_ref_list_sort3.py:
x
 
# A function that returns the length of the value:
def myFunc(e):
  return len(e)
cars = ['Ford', 'Mitsubishi', 'BMW', 'VW']
cars.sort(key=myFunc)
print(cars)
C:\Users\My Name>python demo_list_sort3.py
['VW', 'BMW', 'Ford', 'Mitsubishi']