Python - Object-Oriented Programming Foundations
What will be the output of this code?
class Person:
def __init__(self, name):
self.name = name
p = Person('Anna')
print(p.name)