python从列表中随机选择一个元素

使用random模块

案例

import random

for i in range(5):
    print(random.choice([True, False, 1, 2, 3]))

你可能感兴趣的:(python,python)