cshw/py/Loops/task2.py

7 lines
No EOL
182 B
Python

# Initialize a counter variable
count = 0
# Loop while count is less than 10
while count < 10:
print("Potato") # Print "Potato"
count += 1 # Increment the counter by 1