Pitan
Decending
-5 ,3 ,7,-6
6 ,10,8,4
Answers
Answered by
0
Answer:
KnowledgeBoat Logo
Computer Science
Write a short program to print the following series :
(i) 1 4 7 10 ………. 40.
(ii) 1 -4 7 -10 ………. -40
ANSWER
print("First Series:")
for i in range(1, 41, 3) :
print(i, end = ' ')
print("\nSecond Series:")
x = 1
for i in range(1, 41, 3) :
print(i * x, end = ' ')
x *= -1
OUTPUT
First Series:
1 4 7 10 13 16 19 22 25 28 31 34 37 40
Second Series:
1 -4 7 -10 13 -16 19 -22 25 -28
hope it helps
Similar questions