Anyone with this link can view and run your code instantly.
if condition: ... elif condition: ... else: ...
for item in iterable: ...
while condition: ...
def name(param): return value
class Name: def __init__(self): ...
try: ... except ErrorType: ...
[x for x in lst if condition]
f = lambda x: x * 2
import module from module import name