WAP in Python to find the square of any number.
Answers
Answered by
0
Answer:
Python | Calculate square of a given number (3 different ways)
By multiplying numbers two times: (number*number)
By using Exponent Operator (**): (number**2)
By using math.pow() method: (math.pow(number,2)
Step-by-step explanation:
hope it helps you
Mark me BRANLIST please
Answered by
0
Answer:
int x = int(input("Enter any no"))
print(x*x)
Similar questions
Environmental Sciences,
3 months ago
Science,
3 months ago
Chinese,
7 months ago
Chemistry,
11 months ago
Math,
11 months ago