write a program to print the square of the numbers from 15 to 30
Answers
Answered by
3
squares = [str(n * n) for n in range(15, 30 + 1)]
print("\n".join(squares))
Similar questions