cs50/src6/1/mario7.py

5 lines
97 B
Python

# Prints a 3-by-3 grid of bricks with loop and * operator
for i in range(3):
print("#" * 3)