.Write a program to print the sum of first 7 numbers. in python
Answers
Answered by
1
Answer:
The program is below.
Explanation:
sum = 0
for i in range(1, 8):
sum += i
print sum
Similar questions