龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > python编程 >

python的三目运算符和not in运算符使用示例

时间:2014-05-14 15:19来源:网络整理 作者:网络 点击:
分享到:
这篇文章主要介绍了python的三目运算符和not in运算符使用示例,需要的朋友可以参考下

代码如下:

x = [x for x in range(1,10)]
print(x)
y =[]

result = True if 12 not in x else False  # this is  the best way
print(result)
result = True if not 12 in x else False  # this way just like as " (not 12) in x"
print(result)

print(x is y)
print(x is not y) # this is the best way
print(not x is y) # this way just like as " (not x ) is y" ,so upper is the best way

result = 2 if 1 < 2 else 5 if 4 > 5 else 6 # just as 1 > 2 ? 2 : 4 > 5 ? 5 : 6
print(result)

精彩图集

赞助商链接