摘要:
#随机生成四位数字 import random checkcode = "" for i in range(4): temp = random.randint(1,9) checkcode +=str(temp) print(checkcode) #随机生成四位字符串,可能含有数字以及字母 impo 阅读全文
摘要:
时间戳:通常来说,时间戳表示的是从1970年1月1日00:00:00开始按秒计算的偏移量 格式化的时间字符串 元祖(struct_time) 参考:http://blog.51cto.com/egon09/1840425 time import time a = time.time()#得出时间戳, 阅读全文