I am trying to check if sent1 or sent2 has zero length and if they have i want to set sent_witn_not_null as the list with non-zero list. But the if-else conditions, i've written seems convoluted. What is a simpler way of doing this?
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


sent_with_non_zero_len– 2er0 Jan 28 at 4:02if len(sent1) == 0 or len(sent2) == 0, or even better,if not sent1 or not sent2, taking advantage of the fact that empty containers are 'falsish' values – Volatility Jan 28 at 4:10