Answers for "question i python"

2

ask a question on python

Question = input("your question")
if Question == ("yes")
	print ("well done")
elif Question == ("no")
	print ("try again")
Posted by: Guest on April-09-2020
0

question command python

Question = input("How are you")

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

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

else:
    print("Please anwser 'Great' or 'Bad'")
Posted by: Guest on September-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language