how to use sqrt in python code example

Example 1: sqrt python

#Run this code in the shell - do not run this as a .py file.
>>> import math
#On a different line type the following:
>>> math.sqrt(YourNumberHere)
#You may replace YourNumberHere with any number.

Example 2: python get square root

import math

toSquare = 300
squared = math.sqrt(toSquare)

Example 3: square root in python

def square_root(num):
  	return num**0.5
#prints out 4
print(square_root(16))
#prints out 10
print(square_root(100))

Example 4: square root python

x = 9
y = x ** 0.5

Example 5: how to do a square root in python

a = int(input("enter a real number: "))
sqrt = a**(1/2)
print("the square root of ",a ,"is",sqrt)