Find the out put of the following python program *
for X in range(1,20,3):
print(X)
Answers
Answered by
6
Answer:
1,4,7,10,13,16, 19
Explanation:
it will execute after 3 jumps
Similar questions