Python - Classes and Object Lifecycle
What will be the output of this code?
class Person:
def __init__(self, age):
self.age = age
p = Person(30)
print(p.age + 5)