Classes hold multiple functions. # Declare a class class MyClass: # The __init__ method is called whenever we instantiate our class def __init__(self): print("Class initiated") self.my_num = 0 # Instantiate your class my_class = MyClass() # Access instance variables in your class ...