通过成员运算符‘in’ 和 ‘not in’,我们可以确认一个值是否是另一个值的成员
print('me' in 'disappointment')#True print('us' in 'disappointment')#False