python program in which a class is defined, then create object of that class and call simple ‘print function’ defined in class. code example
Example: how to use class's in python
class person:
name = "jake"
age = 13
x = vars(person)
print(x)