cs50/src6/1/mario4.py

6 lines
98 B
Python

# Prints a row of 4 question marks with a loop
for i in range(4):
print("?", end="")
print()