摘要: import random# print(random.randint(1,3))#取1-3的值,包括1和3# random.randrange(1,3)#不包含3# random.choice('')#放入序列,后面可以设置字符长度# random.uniform(1,3)#取浮点数# rando 阅读全文
posted @ 2020-06-08 07:50 安好_世界 阅读(107) 评论(0) 推荐(0) 编辑
摘要: import time,datetime# time.timezone()#获取时区,显示为秒# time.sleep()#休眠# time.gmtime()#需要传个时间戳,不传就是UTC市区标准时间# time.localtime()#获取的本地时间# time.mktime()#传入元组模式, 阅读全文
posted @ 2020-06-08 07:26 安好_世界 阅读(151) 评论(0) 推荐(0) 编辑