I have just started learning python,
I want the user input to be case sensitive (pets list) it only works if i only have one string in the pets variable, how do i make it work with a list of animals ?
user_input=input("What animal?")
pets =('dog') #i want to add A list of animals here
if(user_input.lower() == pets):
print ('Please feed it!')
else:print(' No need to feed '+ user_input)