📜  问题命令python代码示例

📅  最后修改于: 2022-03-11 14:45:23.719000             🧑  作者: Mango

代码示例1
Question = input("How are you")

if Question == "Great!":
    print("Me too!")

elif Question == "Bad":
    print(":(")

else:
    print("Please anwser 'Great' or 'Bad'")