AI智能
改变未来

Python选取随机数

import randomfrom random import random, uniform, randint, randrange, choice, sample, shuffleprint(random())  # 0~1之间随机选取一个数print(uniform(1, 10))  # 1~10之间随机选取一个数,可以是小数print(randint(1, 10))  # 1~10之间随机选取一个整数print(randrange(0, 101, 2))  # 0~101之间随机选取一个2的倍数print(randrange(0, 101, 5))  # 0~101之间随机选取一个5的倍数print(choice(\'abcdefghij\'))  # 随机字符串中的一个字符items = [1, 2, 3, 4, 5, 6, 7]print(items)shuffle(items)  # 重新随机排序print(items)print(sample([1, 2, 3, 4, 5], 3))  # 随机选3个,无放回选取

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Python选取随机数