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