I would like to make a python file that ignores lower or uppercase for input, just the text
here is what i am working with
option = input("Admin, Member, Localhost> ")
if option =="admin" or option =="member" or option =="localhost":
print("You chose {}".format(option))
else:
exit()
I would like the user to be able to input the words like this "admin AdMiN or ADMIN", any suggestions?