1. ホーム
  2. python

[解決済み] Pythonでリストが空かどうかをチェックする方法は?重複

2022-07-26 22:09:26

質問

私が扱っているAPIは、空の [] のリストを返します。

以下の条件文は期待通りに動作していません。

if myList is not None: #not working
    pass

if myList is not []: #not working
    pass

何が効果的か?

どのように解決するのですか?

if not myList:
  print "Nothing here"