总是产生同样的东西 - Python 3

时间:2018-06-15 15:06:27

标签: python python-3.x if-statement

此计划,即使在' 2'输入第10行,生成成功消息。为什么呢?

a=1
while a==1:
  b=input('Are you ready?')
  if b=='yes':
    print('LOADING')
    a=2
  else:
    print('You aren\'t ready.')
print('Go.')
c=input('Mode 1 or Mode 2?')
if c=='1'or'Mode 1':
  print('Success!')
else:
  print('BEEP BEEP BEEP ERROR')

0 个答案:

没有答案