I am making a dictionary/translator but I want to let the user write, 'hello' and 'Hello' and still receive the result 'Ronne'.
print ("English to Exrian Dictionary")
search = input("Enter the word you would like to translate: ")
if search == "Hello":
print ("Ronne")
elif search == "Bye":
print ("Zio")
else:
print ("No matches were found for '" + search + "'")