coffeortea = input("Would you like coffee or tea? ")
if 'coffee' == coffeortea:
print("1")
elif 'c' == coffeortea:
print("2")
else:
print("3")
I would like it if the user types coFfeE to print 1. or if the user types C to type 2. Basically, I want upper and lower case to not be an issue.