Computer Applications

Write a short program to print the following series :

1 -4 7 -10 ………. -40

Python Control Flow

1 Like

Answer

x = 1
for i in range(1, 41, 3) :
    print(i * x, end = ' ')
    x *= -1

Output

1 -4 7 -10 13 -16 19 -22 25 -28 31 -34 37 -40

Answered By

3 Likes


Related Questions