K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
已知如下Python类定义:
class Student: def __init__(self, name, age): self.stu_name = name self.stu_age = age
stu1 = Student(),未传入任何参数
stu1 = Student()
stu1 = Student("Alice", 18),传入姓名和年龄参数
stu1 = Student("Alice", 18)
stu1 = Student.__init__("Bob", 2),直接调用init方法
stu1 = Student.__init__("Bob", 2)
stu1 = Student("Charlie"),仅传入姓名参数
stu1 = Student("Charlie")