大二上 python 期末复习类(class)Collections 模块元组(tuple)集合(set)列表(list)字典(dict)字符串模块IO文件函数异常逻辑运算符虚拟环境测试(waiting)创建项目(waiting)
类(class)类的定义class nameoftheclass(parent_class): statement1 statement2 statement3init 方法:将对象创建为有初始状态的>>> class Complex:... def __init__(self, realpart, imagpart):... self.r = realpart... self.i = imagp