abs(-x)
returns the absolute value
round(3.1223)
rounds it up
int(‘10’)
returns 10
float(3.15)
returns 3.15
max([1,2,3,323,23,121])
returns the maximum amount
min([1,2,3,4,5])
returns the minimum amount
sum([1,2,3,4,5])
returns the total amount of all
pow(2,3)
returns x power to y