五、python in 与 not in 用法及运算符

一、in 与 not in

python 中,in 与 not in 是用来作为逻辑判断的另一种方式。(与linux 的grep 命令有一定类似)

文字解释可以理解成这样。

in 右侧的内容里,是否包含了左侧的内容。 包含返回真,不包含返回假。

not in  右侧的内容里是否不包含左侧的内容。不包含返回真,包含返回假。

in 与 not in 可以放在任何允许添加条件判断的位置。如while  、 if 等。

 格式

if str1 in str2:

  do xxx

else

  do xxx

示例:

#定义变量num值为字符串123
num = "123"
#定义变量num2为int 值 1 num2 = 1
#while 循环条件为,如果变量num 包含字符串2,则循环进行,并打印hehe while "2&#

你可能感兴趣的:(python,操作系统)