I'm a python newbie and I know this is super simple by I can't find the proper answer. I wrote some code to annoy my friend George that's designed to say 'this person is cool' for any answer you input except 'George'
uncool = "George"
if input("Who do you think is cool?\n") == uncool:
print("this person is not cool")
else:
print("This person is cool")
I know this is simple: I want to make it so that both "George" and "george" are values for the 'uncool' variable. I've tried putting them both in a list, but that meant that typing just 'George' or 'george' on its own didn't work anymore. How do i edit this code so the if statement is triggered by multiple different values?