python取小數(shù)前幾位的方法:
1、通過設(shè)置有效數(shù)字的方法取小數(shù)的前幾位
fromdecimalimport*
getcontext().prec=6
Decimal(1)/Decimal(7)
輸出如下:
Decimal('0.142857')
2、四舍五入設(shè)置保留幾位
fromdecimalimport*
Decimal('50.5679').quantize(Decimal('0.00'))
輸出結(jié)果如下:
Decimal('50.57')
以上內(nèi)容為大家介紹了python怎么取小數(shù)的前幾位?希望對大家有所幫助,如果想要了解更多Python相關(guān)知識,請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。