第13251题 单选
以下Python代码的运行结果是什么
class Person():
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def introduce(self):
        return f"My name is {self.name} and I am {self.age} years old."
p = Person("Alice", 30)
print(p.introduce())
A

My name is Alice and I am 30 years old.

B

My name is Person and I am 30 years old.

C

My name is Alice and I am 0 years old.

D

My name is 30 and I am Alice years old.