码迷,mamicode.com
首页 > 编程语言 > 详细

python运算符in和not in

时间:2019-12-05 18:57:10      阅读:347      评论:0      收藏:0      [点我收藏+]

标签:col   输入   连续   表示   ror   字符   输出   python运算   运算符   

1.in: 表示连续的字符串或单个字符包含

举例

name = ‘张三四‘
#
name里包含张,结果输出in if in name : print(in) else: print(error)
# name里不包含张四,结果输入error
if 张四 in name:
    print(in)
else:
    print(error)

2.not in 

# name里不包含张四,结果输出1
if 张四 not in name:
    print(1)
else:
    print(2)

 

 

python运算符in和not in

标签:col   输入   连续   表示   ror   字符   输出   python运算   运算符   

原文地址:https://www.cnblogs.com/z-j-h/p/11990991.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!