Answers for "how to write square in python"

9

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))
Posted by: Guest on August-21-2020
2

python how to draw a square

import turtle
for i in range(4):
  turtle.forward(40)
  turtle.right(90)
Posted by: Guest on December-31-2020
3

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)
Posted by: Guest on March-22-2021
-2

how to square a number in python

#16 to the power of 2
answer = 16**2
Posted by: Guest on September-19-2020

Code answers related to "how to write square in python"

Python Answers by Framework

Browse Popular Code Answers by Language