Answers for "python square"

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
23

python get square root

import math

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

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
2

python square number

## Two ways to square the number x

x ** 2
# Returns: 9

pow(x, 2)
# Returns: 9
Posted by: Guest on February-03-2021
2

python square

#use the ** operator
3 ** 2
Posted by: Guest on May-19-2020
2

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

Python Answers by Framework

Browse Popular Code Answers by Language