Without running the following code, determine what each print statement should print.
cats = ('Cocoa', 'Cheddar',
'Pudding', 'Butterscotch')
print('Butterscotch' in cats)
print('Butter' in cats)
print('Butter' in cats[3])
print('cheddar' in cats)