Math, asked by komalpriyabgp749, 7 months ago

WAP in Python to find the square of any number.​

Answers

Answered by rubykushwaha07
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 anik74
0

Answer:

int x = int(input("Enter any no"))

print(x*x)

Similar questions