丹佛斯阿胶 发表于 2020-10-25 16:06

如何在打印出A或B之后重新从if开始

import time
time.sleep(3)
print('1成……')
time.sleep(2)
order=input('1等待指令:')
while True:
    if order=='6':
      time.sleep(3)
      print('a')
    elif order=='x':
      print('b')
      

额微粒波地 发表于 2020-10-25 16:12

import time
time.sleep(3)
print('1成……')
time.sleep(2)
while True:
    order=input('1等待指令:')
    if order=='6':
      time.sleep(3)
      print('a')
    elif order=='x':
      print('b')

ymhld 发表于 2020-10-26 14:30

对,order一直没变,只能打印一个
页: [1]
查看完整版本: 如何在打印出A或B之后重新从if开始