Write a program in Python to find the square of any number. Also write the output.
Answers
Answered by
0
Answer:
To calculate the square of a number in Python, we have three different ways.
1. By multiplying numbers two times
2. By using Exponent Operator
3. Using math.pow method
Similar questions