3 lines
86 B
Python
3 lines
86 B
Python
for i in range(2, 9, 2):
|
|
print("%d, " % i, end="")
|
|
print("who do we appreciate?")
|