Python Pythonでリストが空か確認する hawk 2021-01-17 / 2021-03-07 実は空かどうかはnotで調べられる。 サンプルコード l = [] if not l: print("empty!") 実行結果 empty!