20210518

Python -數值運算 (Math Calculation)

Python -數值運算 (Math Calculation)

..................................................
# Date : 2021-05-18
..................................................
# Keywords: Code, Python, Math, Calculation, ... .
..................................................

# log2()

import math
x = 100
print('%.3f' % math.log2(x))

# 使用 '%f' %,以浮點數輸出;使用 '%。3f' % ,定義以小數點3位輸出。

..................................................

# REFERENCE


..................................................

沒有留言: