Created
June 28, 2015 08:52
-
-
Save chingovan/94e4de5f2870a067adc5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = ['life', 'is', 'not', 'fair', 'get', 'used', 'to', 'it'] | |
print(a) | |
b = sorted(a, key=len) | |
print("List a :" , a) | |
print("List b : ", b) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment