幸福麦片

文章
5
资源
0
加入时间
2年10月24天

Python中随机数的使用

随机数功能1. choice(seq)此处的 seq 必须是有序的序列,返回序列中的一个随机项。from random import *c1 = choice([1, 2, 3, 4, 5])c2 = choice((1, 2, 3, 4, 5))c3 = choice(range(1, 11))print(c1, c2, c3)2. randint(start, end)返回 [start, end] 之间的一个随机整数。包头又包尾。from random import *r