第一天打卡:
今天主要是變數、運算子與資料型別以及位運算的內容,內容如下:
今天寫的**如下:
#print("hello,world")
'''letters = ['a', 'b', 'c']
if 'a' in letters:
print('a' + ' exist')
if 'h' not in letters:
print('h' + ' not exist')
'''#print(-3*2+5/-2-4)
"""b = dir(int)
print(b)
"""#找到乙個整型的二進位制並輸出位數
"""a=1031
print(bin(a))
print(a.bit_length())
"""#保留浮點型的小數點後 n 位。
#可以用 decimal 包裡的 decimal 物件和 getcontext() 方法來實現。
#python 裡面有很多用途廣泛的包 (package),
#用什麼你就引進 (import) 什麼。包也是物件,
# 也可以用上面提到的dir(decimal) 來看其屬性和方法。
'''import decimal
from decimal import decimal
a = decimal.getcontext()
print(a)
import decimal
from decimal import decimal
b = decimal(1)/decimal(3)
print(b)
'''#使0.3保留4位
'''import decimal
from decimal import decimal
a = decimal.getcontext().prec = 4
c = decimal(1)/decimal(3)
print(c)
'''
php保留兩位小叔 php怎麼保留2位小數
方法 1 使用round 函式進行四捨五入,語法 round 浮點數,2 2 利用sprintf 函式,語法 sprintf 2f 浮點數 3 使用format 函式進行四捨五入,語法 format 浮點數,2 php怎麼保留2位小數?num 4.30258 第一種 利用php round方法對浮點...
JS保留2位小數
js保留兩位小數 對於一些小數點後有多位的浮點數,我們可能只需要保留2位,但js沒有提供這樣直接的函式,所以我們得自己寫函式實現這個功能,如下 function changetwodecimal x var f x math.round x 100 100 return f x 功能 將浮點數四捨五...
C 小數保留N位
1.使用 system.globalization.numberformatinfo system.globalization.numberformatinfo provider new system.globalization.numberformatinfo provider.numberdec...