Python - Constructors and Object Initialization
What will be the output of this code?
class Person:
def __init__(self, name):
self.name = name
p = Person('Alice')
print(p.name)