Python

Pythonでリストが空か確認する

実は空かどうかはnotで調べられる。

サンプルコード

l = []

if not l:
    print("empty!")

実行結果

empty!