your_wishes = input("Do you have any question? (yes/no)").lower()
def question(your_wishes):
if your_wishes == "yes":
question = input("Ask your question to get the response")
elif your_wishes == "no":
print("Oops!Your wishes will not come true!" )
else:
print("Oops! 404 Errors found!")
question(your_wishes)
Comments
Leave a comment