Home > Backend Development > Python Tutorial > python的三目运算符和not in运算符使用示例

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 11:29:50
Original
2572 people have browsed it

代码如下:


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 5 else 6 # just as 1 > 2 ? 2 : 4 > 5 ? 5 : 6
print(result)

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template