for i in range(6): print(i*2+1)
➡️ 1 3 5 7 9 11

for i in range(2,10,2): print(i)
➡️ 2 4 6 8

Write the program which generates the output below. (press enter to proceed)

score:

Q.1

➡️