RosettaCodeData/Task/Loops-For-with-a-specified-step/Python/loops-for-with-a-specified-step-2.py
2023-07-01 13:44:08 -04:00

3 lines
86 B
Python

for i in range(2, 9, 2):
print("%d, " % i, end="")
print("who do we appreciate?")