Answers for "square python"

23

python get square root

import math

toSquare = 300
squared = math.sqrt(toSquare)
Posted by: Guest on February-11-2020
19

python square root

import math
a = input("what do you wnat to square root")
print(math.sqrt(a))
Posted by: Guest on July-09-2020
7

python square a number

import math

8 * 8          # 64
8 ** 2.        # 64
math.pow(8, 2) # 64.0
Posted by: Guest on March-07-2020
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
0

python how to draw a square

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

Python Answers by Framework

Browse Popular Code Answers by Language