| 12345678910111213141516 | 
							- class PeopleInfo:
 
-     """
 
-     答题人个人信息
 
-    """
 
-     def __init__(self, uuid, city=None, age=None, sex=None, crowd=None):
 
-         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
 
 
  |