#Whenever I put something in for the input it always says "That's Good!"
import time user_action = "user" print ("wassup") time.sleep (0.5) print ("My name is JoeChat. I am a chatbot made by PickleScripts.") time.sleep (1) user = input ("How are you doing?") user = possible_actions = ("good", " good", "well", " well", "bad", " bad", "not good", " not good") if user == "good" or " good" or "well" or " well": print ("That's good!") elif user == "bad" or " bad" or "not good" or " not good": print ("That's sad. :( I hope you feel better") else: print ("I do not understand")When I try to put "bad" in the output during the input part, it always says "That's good!"
Gribouillis write Mar-30-2023, 02:41 PM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.