Python 随机选号代码:模拟彩票抽奖
以下是 Python 代码实现:
import random
# 生成 1 到 33 的号码池
pool1 = list(range(1, 34))
# 生成 1 到 16 的号码池
pool2 = list(range(1, 17))
# 随机选取 6 个号码
nums = random.sample(pool1, 6)
# 随机选取 1 个号码
num = random.choice(pool2)
# 输出结果
print('选中的 6 个号码为:', nums)
print('选中的 1 个特别号码为:', num)
输出结果示例:
选中的 6 个号码为: [17, 5, 27, 13, 20, 2]
选中的 1 个特别号码为: 9
原文地址: https://www.cveoy.top/t/topic/lKID 著作权归作者所有。请勿转载和采集!