(Choose 1 answer)
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
The correct way to instantiate the above Person class is:
A. Person ("Rufus", 3)
B. Person ()
C. Person.create("Rufus", 3)
D. Person.init("Rufus". 3)
Q: 27