摘要: # -*- coding:utf-8 -*- import random # 随机小数 print(random.random()) # 大于0且小于1之间的小数 print(random.uniform(1, 3)) # 大于1且小于3的小数 # 随机整数 print(random.randint 阅读全文
posted @ 2020-04-03 14:42 熊熊闯深林 阅读(150) 评论(0) 推荐(0) 编辑