Python - Object-Oriented Programming Foundations
What will this code print?
class Person:
def __init__(self, name):
self.name = name
p1 = Person('Alice')
p2 = Person('Bob')
print(p1.name, p2.name)