CBSE Class 10 Computer Applications Question 19 of 26

Python Conditionals and Loops — Question 10

Back to all questions
10
Question

Question 8(i)

Write a short program to print the following series :

1 4 7 10 ........... 40.

Answer
Solution
for i in range(1, 41, 3) :
    print(i, end = ' ')
Output
1 4 7 10 13 16 19 22 25 28 31 34 37 40