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.