- Input:
input() - Output:
print()
- Integer:
int - Float:
float - Complex:
complex
- String:
str - String Ops: builtin methods
- List:
list - Tuple:
tuple
- Set:
set - Set Theory Ops: builtin methods
.union().intersection().difference().symetric_difference()
- Membership Testing
- Dictionary:
dict - Dictionary Ops: builtin methods
.get().pop().keys().values().items()
- Dictionary Iteration
- Dictionary Comprehension
- Branch:
if,elif&else - Iterate:
for,while - Jump: invocation, see Functor
- Function
- Method
- Lambda
- Higher Order Functor
- Import Styles
- Module: Python File
- Package: Folder of Python Files
- Instantiation
- Magic Methods
- Inheritance
- Polymorphism
- Class Scope