Created
June 28, 2015 08:38
-
-
Save chingovan/c26ee4c7e7c2aff69d1c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = [5, 2, 7, 3, 8, 1] | |
| print(a) | |
| b = sorted(a, reverse = True) | |
| 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