摘要: import random # 一.随机小数: print(random.random()) # 0.848972270116501结果是0-1之间的随机小数 print(random.uniform(1,9)) #5.169027668619639 结果是1-9之间的随机小数。发红包。 # 二.随机整数: print(random.randint(1,5)) #1-5之间的随机整数,包含5.... 阅读全文
posted @ 2019-03-21 16:49 梁劲雄 阅读(156) 评论(0) 推荐(0) 编辑
摘要: import time print(time.time()) #时间戳1553070877.0166008 print(time.strftime('%Y-%m-%d %H %M %S')) #2019-03-20 16 33 48 格式化时间 print(time.strftime('%Y-%m-%d %X')) #2019-03-20 16:33:48 格式化时间 print(time.l... 阅读全文
posted @ 2019-03-21 16:48 梁劲雄 阅读(100) 评论(0) 推荐(0) 编辑