WAP in Python to find the square of any number.
Answers
Answered by
0
import math
number = int(input("enter a number:"))
sqrt = math.pow(number, 0.5)
print("square root: ", sqrt)
[use this code to find square root in python MARK me as BRAINLIEST and I will follow you and like your answers]
Answered by
0
Answer:
Hey this is in python...
function square(num):
return num**2
n = int(input("Enter a number: "))
print("Square = ", square(n))
Similar questions
English,
4 months ago
Hindi,
4 months ago
Math,
4 months ago
Hindi,
8 months ago
World Languages,
8 months ago
English,
1 year ago
CBSE BOARD X,
1 year ago