qq_45882689 2022-02-09 16:44 采纳率: 100%
浏览 25
已结题

选择双色球,先六个红再两个蓝,然后分别打印。确保不能重复,不能超出范围

问题遇到的现象和发生背景
问题相关代码,请勿粘贴截图
运行结果及报错内容
我的解答思路和尝试过的方法
我想要达到的结果

```python
import random
count =0
old_red=[]
while count<6:
    red = int(input('select red ball:'))
    count+=1
    if red>60:
        print('选择的数字大于双色球数字')
    else:
        continue
    if red in old_red:
        print('数字已存在,请重新选择')
        continue
    else:
        old_red.append(red)
print(old_red)


```

  • 写回答

2条回答 默认 最新

  • user-from-future 2022-02-09 17:17
    关注
    count = 0
    old_reds = []
    old_blues = []
    while count < 6:
        red = int(input('select red ball:'))
        if red > 60:
            print('选择的数字大于双色球数字')
            continue
        if red in old_reds:
            print('数字已存在,请重新选择')
            continue
        count += 1
        old_reds.append(red)
    count = 0
    while count < 2:
        blue = int(input('select blue ball:'))
        if blue > 60:
            print('选择的数字大于双色球数字')
            continue
        elif blue in old_blues:
            print('数字已存在,请重新选择')
            continue
        count += 1
        old_blues.append(blue)
    print(f'选择的红球:{old_reds}')
    print(f'选择的蓝球:{old_blues}')
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 2月17日
  • 已采纳回答 2月9日
  • 创建了问题 2月9日

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 Ubuntu20.04无法连接GitHub
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥30 C++行情软件的tick数据如何高效的合成K线