摘要: 1 #!/usr/bin/python3 2 import random 3 4 # 从"身份证地址对照表.txt"读取地址码和对应的地址,保存为字典 5 def createIDaddress(file): 6 D = [] 7 for line in open(file): 8 if not l 阅读全文
posted @ 2019-08-20 23:09 Daniel_yan_0728 阅读(1329) 评论(0) 推荐(0) 编辑
摘要: 1 import random 2 from datetime import date 3 from datetime import timedelta 4 5 6 class fourEl(): 7 8 def __init__(self,sex): 9 self.sex = sex 10 11 阅读全文
posted @ 2019-08-20 23:05 Daniel_yan_0728 阅读(408) 评论(0) 推荐(0) 编辑