Python - Constructors and Object Initialization
What will this code print?
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
p = Person('Anna', 30)
print(p.age)