我正在尝试检查 sent1 或 sent2 的长度是否为零,如果他们有我想设置 sent_witn_not_null
为非零列表的列表。但是我写的 if-else 条件似乎很复杂。这样做的更简单方法是什么?
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