i have been following tutorials on W3Schools and have decided to make a calculator with Python. I have used a input for the input and a if statement to register whether it says "quit" to stop the calculator or if it is a number to add it to an array. But every single time i run it, it will return the Quitting message which is only in the if statement even if i put a result that should be in the else code. Thanks for the help btw! Here's my code.
print("Calculator")
NumberArray = []
InputNumber = input()
if InputNumber == "Quit" or "quit":
#Calculate()
print("Quitting... ")
exit()
else:
print(InputNumber) #Just to debug it!