[Python] Nullの判定方法(None)
Nullの判定方法(None)
表記方法
Pythonでは、Nullを「None」と表記します。
判定方法
判定に用いるときは、SQLのように「is」を用います。
「==」などは使えません。
サンプル
1 2 3 |
value = None if value is None: print "This is Null!!" |
結果
1 |
This is Null!! |
スポンサードリンク
関連記事
-
[python] 文字列結合
pythonでの文字列結合 サンプル
-
[Python] 型の検査・判定
Pythonでの型の検査・判定方法 isinstance サンプル [crayon-674
-
pythonでstorage transfer serviceを使ってみた。
準備 pythonのインストールとかする。 このあたり。http://kei0310.
-
[python] 配列の扱い方
pythonでの配列の扱い方 python 配列の作成 python 配
-
[python] 日付の取り扱い(datetime) 現在日付、計算、文字列変換(format)
現在日付 日付の計算 [crayon-674936b01f2ab452407486/] 文
-
Compute Engine(GCE)にpyenv環境を作ってみた
pyenvのインストール 必要なOSモジュールのインストール https://
-
[python] ファイルの読み込み
pythonでのファイルの読み込み方法 基本サンプル CSVファイルの読み込み