1 2 3 4 5 6 7 8 9 10
class Foo: pass def hello(): print('hello, world') x = 13 class Square(): def __init__(self, x): self.inital = x self.squared = x**2