Python核心编程笔记--随机数时间:2024-04-11 13:07:29#第一步引入模块 import random #第二步生成随机数 print random.randint(1,3);#[1,2,3]注意这里是闭区间。