

class Person:
    def __init__(self, name, age):
        self.name = name
        self.age = age

# This is how to "create" a Person "object":
p1 = Person("John", 36)
print(p1)


# This is how to "create" a function "object":
def f1():
    print("Called f1")

print(f1)


  
