ホームページ > バックエンド開発 > Python チュートリアル > python的三目运算符和not in运算符使用示例

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
リリース: 2016-06-06 11:29:50
オリジナル
2569 人が閲覧しました

代码如下:


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)

関連ラベル:
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート