我正在编写一个预测天气的程序,我需要问用户一个问题,答案是否为上一个问题的“是”,或者询问另一个问题,如果答案为“否”。仅当特定条件为True
时,才能执行输入请求。
答案 0 :(得分:0)
您正在寻找一个if语句:
firstresponse = input('first (y/n): ')
if firstresponse == 'y':
secondresponse = input('second: ')
print(firstresponse)
print(secondresponse)
else:
print(firstresponse)