有条件后我该如何要求用户输入?

时间:2019-10-29 20:58:31

标签: python input

我正在编写一个预测天气的程序,我需要问用户一个问题,答案是否为上一个问题的“是”,或者询问另一个问题,如果答案为“否”。仅当特定条件为True时,才能执行输入请求。

1 个答案:

答案 0 :(得分:0)

您正在寻找一个if语句:

firstresponse = input('first (y/n): ')

if firstresponse == 'y':
  secondresponse = input('second: ')
  print(firstresponse)
  print(secondresponse)
else:
  print(firstresponse)