K12教育赛事综合服务平台
专注青少年竞赛题库网站
聚乐之家官方网站
下载聚乐之家官方App
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())
My name is Alice and I am 30 years old.
My name is Person and I am 30 years old.
My name is Alice and I am 0 years old.
My name is 30 and I am Alice years old.