使用while循环输入 1 2 3 4 5 6 8 9 10时间:2021-08-30 04:21:52 1 count = 0 2 while count < 10: 3 count += 1 4 if count == 7: 5 pass 6 else: 7 print(count)