You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
p1 = Person()#Since we don't have an __init__-function specified, we cannot give parameters on instantiation*. p1 does not have any attributes (name or age) yet.
p1.function("John", 36)#If we want to specify attributes, we need to call an extra function.
print(p1.name)
print(p1.age)
'''
* instantiation: In programming, instantiation is the creation of a real instance or particular realization of an abstraction or template such as a class of objects or a computer process.