Python生成1-100之间的随机数

2022-03-15 00:00:00 python 生成
import random 
rnd = random.randint(1,100) # 生成1-100之间的随机数

相关文章