Python Cheatsheet
Python programming language quick reference
Data Types
int, float, str, bool, list, tuple, dict, set, NoneControl Flow
if/elif/else, for, while, break, continue, pass, try/exceptFunctions
def, return, *args, **kwargs, lambda, decorators, generatorsOOP
class, __init__, self, inheritance, polymorphism, encapsulation