Computer Science, asked by sapnakumare27271, 2 months ago

please don't be wrong answer
1. Write a Python program to print the squares of numbers between 10 to 20.​

Answers

Answered by krishnakumarkti123
3

Answer:

  • This is the required program for the question in Python 3.
  • print("Square of numbers between 10 to 20 are...")
  • for i in range(11, 20):
  • print(i*i, end=" ")
  • One liner:
  • print("Square of numbers between 10 to 20 are...","\ n"," ".join(str(i*i) for i in range(11,20)))
  • See the attachment for output ☑.

Answered by sony6238
3

Answer:

Square of number between 10 to 20 are ....

  • 121
  • 114
  • 169
  • 196
  • 225
  • 256
  • 289
  • 324
  • 361.
Similar questions