Computer Science, asked by swetasingh2145, 4 months ago

write a program to print the square of the numbers from 15 to 30 ​

Answers

Answered by jai696
3

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

squares = [str(n * n) for n in range(15, 30 + 1)]

print("\n".join(squares))

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

Similar questions