Computer Science, asked by komalpriyabgp749, 6 months ago

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

Answers

Answered by pranavraswan
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 gaganadithyareddy9
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