Computer Science, asked by nityacarat, 2 months ago

write a program in python to find the first 10 squars of natural numbers in ascending order and after task is completed print end​

Answers

Answered by jai696
4

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

squares = [n * n for n in range(1, 10 + 1)]

print(squares, "\nend")

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions