Pythonプログラミング言語においての三項演算子の使い方について紹介します。
print("y") if ( 5 < 3 ) else print("n") #=> n
print("y") if False else print("n") #=> n
print("y") if True else print("n") #=> y
print("y") if None else print("n") #=> n
print("y") if 0 else print("n") #=> n
print("y") if "" else print("n") #=> n
# e.g.
sys.exit(0) if ( re.match(r'^https?:\/\/(?!(192|127)\.)', "${url}", re.M) ) else sys.exit(1)
false
じゃなくてFalse
なのに軽くハマった。
関連記事:
Windows 11にPythonをインストールする
Pythonのバージョン管理をする方法とpyenvの使い方
Pycharmの有料版を無料でインストールするには
Pythonで投資の複利計算をする
Imagededupで類似画像を抽出、検出する(Python)
自然言語テキストが何語なのか判定する [fastText]
関連広告: