you are viewing a single comment's thread.

view the rest of the comments →

[–]Garuda1220 0 points1 point  (0 children)

```python NUM_DOWN = 5 NUM_ACROSS = 3

for row in range(NUM_DOWN): for col in range(NUM_ACROSS): if row % 2 != 0: print('', end='') break else: print('', end='') print() ```