标签:指定 form print 随机 之间 python 生产 class code
import random
for x in range(10):
# 随机整数
# r = random.randint(1, 10) == round((random.random()) * 10)
# 0-1之间的随机数
r = random.random()
# 生产指定范围内的随机数
r = random.uniform(10, 20)
print(r)
标签:指定 form print 随机 之间 python 生产 class code
原文地址:https://www.cnblogs.com/ldlx-mars/p/12361415.html