Simple CheatSheet
    • PythonPython
    • DatabaseDatabase
    • Operating SystemOperating System
    • ProgrammingProgramming
    • Linux CommandLinux Command
    • ToolkitToolkit
    • OtherOther
    • Keyboard ShortcutsKeyboard Shortcuts
Dart
Dart
HTML Canvas
HTML Canvas
Redis
Redis
Bash
Bash
JavaScript
JavaScript
Python
Python Lists

Sort & Reverse

>>> li = [3, 1, 3, 2, 5]
>>> li.sort()
>>> li
[1, 2, 3, 3, 5]
>>> li.reverse()
>>> li
[5, 3, 3, 2, 1]
Comments
Related
  • Miscellaneous
  • Python Classes & Inheritance
  • Python File Handling
  • Python Modules
  • Python Functions
  • Python Loops
  • Python Flow control
  • Python Lists
  • Python F-Strings (Since Python 3.6+)
  • Python Strings
  • Python Advanced Data Types
  • Python Built-in Data Types
  • Getting Started