how to use square root in python code example

Example 1: python square root

import math
a = input("what do you wnat to square root")
print(math.sqrt(a))

Example 2: python get square root

import math

toSquare = 300
squared = math.sqrt(toSquare)

Example 3: square root python 3

import math
print(math.sqrt(589485))

Example 4: how to make a square in python

import turtle


turtle.begin_fill()
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.right(90)
turtle.forward(100)
turtle.end_fill()
turtle.right(145)
turtle.forward(50)

Example 5: square root python

x = 9
y = x ** 0.5