xxxxxxxxxx
from math import * # to get more functions
print(floor(3.7)) #grabs lowest number/ chops off decimal point
print(ceil(3.7)) #rounds number no matter what
print(sqrt(36)) #square root of 36
my_num = 5
print(str(my_num) + " my favorite number")
my_num = -5
print(abs(my_num))
print(pow(3,2)) # 3^2
print(max(4,6)) # prints max num/min prints lowest num
print(round(3.7)) # 3.2 would round down to 3