摘要:
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 阅读全文
摘要:
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 阅读全文