Why does this not work? Why does this not return "good im glad". Sorry i'm a beginner.
Code:
x = str(input("Hello how are you?"))
if x == "very good":
print("Good Im Glad To Hear That!")
else:
print("I'm Sorry!")
Comment