Py.–math

 0    16 フィッシュ    sir
mp3をダウンロードする 印刷 遊びます 自分をチェック
 
質問 答え
x -=> degrees
学び始める
degrees([x])
x -=> radians
From degrees
学び始める
radians([x])
sin, cos, tg
学び始める
sin(), cos(), tan()
ceil, floor
学び始める
ceil(), floor()
log_10 x
学び始める
log10([x])
ln x
学び始める
log([x])
log_a x
学び始める
log(x, a)
π, e
学び始める
pi, e
f(x, y)= √(x² +y²)
学び始める
hypot()
f(x)= √x
学び始める
sqrt()
Returns a floating-point positive infinity
学び始める
math. inf
Returns a floating-point NaN (Not a Number) value
学び始める
math. nan
Returns the product of all the elements in an iterable
学び始める
math. prod()
Returns the number of ways to choose k items from n items with order and without repetition
学び始める
math. perm()
Returns the number of ways to choose k items from n items without repetition and order
学び始める
math. comb()
Returns the Euclidean distance between two points (p and q), where p and q are the coordinates of that point
学び始める
math. dist()

コメントを投稿するにはログインする必要があります。