which method is created when creating a class in python code example
Example: how to use class's in python
class person:
name = "jake"
age = 13
x = vars(person)
print(x)
class person:
name = "jake"
age = 13
x = vars(person)
print(x)