This project is like google but they give you an option of questions instead of you putting your question. Don’t worry, I am not trying to ruin your day but just check it out(this is version 0 it is not very good but updates are coming.)
Here is the code to run:
print("Choose a question from the questions, remember to type it the same way its written.")
questions = input("What does print function do? Give me a fun science experiment. Why is chemistry hard?")
if questions == "What does print function do?":
print("It outputs the words or variables value (only type the variables name). ")
elif questions == "Give me a fun science experiment.":
print("Take vinegar and baking soda put them both in a cup and watch the volcano erupt! (you can add some color for fun).")
elif questions == "Why is chemistry hard?":
print("Its actually easy! Just keep focusing and it will be easy for you.")
print("Have another try!")
continue_lol = input("What does print function do? Give me a fun science experiment. Why is chemistry hard?")
if continue_lol == "What does print function do?":
print("It outputs the words or variables value (only type the variables name). ")
elif continue_lol == "Give me a fun science experiment.":
print("Take vinegar and baking soda put them both in a cup and watch the volcano erupt! (you can add some color for fun).")
elif continue_lol == "Why is chemistry hard?":
print("Its actually easy! Just keep focusing and it will be easy for you.")
print("Have another try!")
last_try = input("What does print function do? Give me a fun science experiment. Why is chemistry hard?")
if last_try == "What does print function do?":
print("It outputs the words or variables value (only type the variables name). ")
elif last_try == "Give me a fun science experiment.":
print("Take vinegar and baking soda put them both in a cup and watch the volcano erupt! (you can add some color for fun).")
elif last_try == "Why is chemistry hard?":
print("Its actually easy! Just keep focusing and it will be easy for you.")
print("Tries have run out. Will update soon. Happy new year!")
Goodbye.