Py.–math

 0    16 flashcards    sir
download mp3 print play test yourself
 
Question Answer
x -=> degrees
start learning
degrees([x])
x -=> radians
From degrees
start learning
radians([x])
sin, cos, tg
start learning
sin(), cos(), tan()
ceil, floor
start learning
ceil(), floor()
log_10 x
start learning
log10([x])
ln x
start learning
log([x])
log_a x
start learning
log(x, a)
π, e
start learning
pi, e
f(x, y)= √(x² +y²)
start learning
hypot()
f(x)= √x
start learning
sqrt()
Returns a floating-point positive infinity
start learning
math. inf
Returns a floating-point NaN (Not a Number) value
start learning
math. nan
Returns the product of all the elements in an iterable
start learning
math. prod()
Returns the number of ways to choose k items from n items with order and without repetition
start learning
math. perm()
Returns the number of ways to choose k items from n items without repetition and order
start learning
math. comb()
Returns the Euclidean distance between two points (p and q), where p and q are the coordinates of that point
start learning
math. dist()

You must sign in to write a comment