Python - Operators and Expression Evaluation
What is the output of the following code?
fruits = ['apple', 'banana', 'cherry']
print('banana' in fruits)
print('grape' not in fruits)