for i in range(6): print(i, end='\t')
➡️ 0 1 2 3 4 5
for i in range(2,6): print(i, end='\t')
➡️ 2 3 4 5
for i in range(1,11,2): print(i, end='\t')
➡️ 1 3 5 7 9

Write down the output of the following program. (press enter to proceed)

score:

Q.1

➡️

for i in range(...):