Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 855 Bytes

File metadata and controls

41 lines (28 loc) · 855 Bytes

🐍 Zen of Python

If you ever need help, type help - use the resources mentioned in the beginning - or, ask Google.

help(sorted)

# > Help on built-in function sorted in module builtins:
# >
# > sorted(iterable, /, *, key=None, reverse=False)
# >     Return a new list containing all items from the iterable in ascending order.
# >
# >     A custom key function can be supplied to customize the sort order, and the
# >     reverse flag can be set to request the result in descending order.

Never forget the Zen of Python.

import this

And also try out this one.

import antigravity