'l' in 'hello'     # True
'm' in 'hello'     # False
'l' not in 'hello' # False
'm' not in 'hello' # True