7. in not in 的讲解

s="加菲猫的幸福生活"
print('加菲猫' in s)
print('加菲猫的生活'in s)
print('加菲猫' not in s)
print('加菲猫的生活' not in s)
原文地址:https://www.cnblogs.com/osses/p/8604584.html