send1またはsent2の長さがゼロであるかどうか、およびゼロ以外のリストを含むリストとして設定 する必要があるかどうかを確認しようとしています。しかし、if-else条件、私が書いたのは複雑なようです。これを行う簡単な方法は何ですか?sent_witn_not_null
sent1 = ["this","is","foo","bar"]
sent2 = []
if len(sent1) or len(sent2) == 0:
sent_with_not_null = sent2 if len(sent1) == 0 else sent1
sent_with_not_null = sent1 if len(sent2) == 0 else sent2