Computer Science, asked by sachinsingh15092000, 10 months ago

write a program to print sum of squares of even number from 1 to20 in reverse order​

Answers

Answered by priyanshu6969
0

Answer:

#Python

Explanation:

even_list = [ ]

for i in range(20,1,0) :

if i%2==0:

even_list.append(i)

for i in even_list:

print(i**2)

Similar questions