Python – Combine a Conditional with a For Loop

for-looppythonsimplificationsyntax

I have a simple example I've drawn up. I thought it was possible to combine if statements and for loops with minimal effort in Python. Given:

sublists = [number1, number2, number3]

for sublist in sublists:
    if sublist:
        print(sublist)

I thought I could condense the for loop to:

for sublist in sublists if sublist:

but this results in invalid syntax. I'm not too particular on this example, I just want a method of one lining simple if statements with loops.

Best Answer

if you want to filter out all the empty sub list from your original sub lists, you will have to do something like below. this will give you all the non empty sub list.

print([sublist for sublist in sublists if sublist])

*edited for syntax

Related Question