class Users(Base, BaseMixin): username = Column(String(24)) id_Num = Column(String(18) ) # 身份证号码 @property def gender(self): tag=self.id_Num[16:17] if (int(tag) % 2) == 0: result='女' else: result='男' return result @property def age(self): birth = self.id_Num[6:14] barth_day=datetime.datetime.strptime(birth,"%Y%m%d") now=datetime.datetime.now() days=(now-barth_day).days age=days//365 return age
其实就是根据第17位,奇数是男,偶数是女。
年龄是根据5-13位,生日字符串,计算和现在有多少天,除以365天,舍去余数。那就是年龄了。