| 123456789101112131415161718 | class PeopleInfo:    """    答题人个人信息   """    def __init__(self, uuid, city=None, age=None, sex=None, crowd=None):        if crowd is None:            crowd = []        self.uuid = uuid        if city == '上海市' or city == '一线':            self.city = '上海市'        elif city in ['无锡市', '杭州市', '苏州市', '宁波市']:            self.city = '上海周边'        else:            self.city = city        self.age = age        self.sex = sex        self.crowd = crowd
 |