how to object of class in pythoon code example
Example 1: what is an object in python
#objects are collections of data
Example 2: how to use class's in python
class person:
name = "jake"
age = 13
x = vars(person)
print(x)
#objects are collections of data
class person:
name = "jake"
age = 13
x = vars(person)
print(x)