fairly new to python, and coding in general. I am following an online guide for a simple Python function, but I want to edit it so I can learn more it. I want to know how my function can look for a variety of inputs via the user that will activate the same output. For example, I want 'Yes' and 'yes' to output the same text.
choice = raw_input('Do you like YouTube videos?  ')
if choice == 'yes' :
    print 'I like YouTube videos too!'
elif choice == 'no' :
    print 'Damn, you suck'
else :
    print '*invalid answer*'
 
     
     
     
    