Hey all I'm new to python and I'm just trying to make a program that asks for your name and if you put in the name "Joe" it says "Hi Joe" and if you put in something else it says " I don't know you. The problem is that i can type in any name and it still says "Hi Joe!" What did I do wrong?
print("what is your name?")
name = input()
if name == "joe" or "Joe":
print("Hi Joe!")
else:
print("I don't know you.")
input("press enter to exit")