@
to
ebite sa python program print
Sum of square of all integer where each
integer is multiple of 5 and range of
integer betureen 1 to 50
Answers
Answered by
1
Answer:
s=0
for i in range(1,51):
if i%5==0:
s+=pow(i,2)
print(s)
Similar questions
Social Sciences,
2 months ago
Math,
2 months ago
Math,
2 months ago
Social Sciences,
4 months ago
English,
4 months ago
Science,
10 months ago
Math,
10 months ago