Considering the following construct that controls strings:
if input_ == "Option1":
print "Option 1"
elif input_ == "Option2":
print "Option 2"
else:
print "Option x"
Is there any way to make Option1 and Option2 to accept any capitalized characters (such as "option1", "OpTion1", "OPTION1" etc...)?