2016-11-17 53 views
1

有沒有辦法告訴python我想執行(全部)我的aritmetics四捨五入結果(總是)到3位小數?在Python中使用3位小數

+0

https://gist.github.com/jackiekazil/6201722這看起來有用 – Roxanne

回答

2
num=1.2356 
print round(num,3) 
## Use round function and pass number of decimal places upto which you want to round 
2

如果它只是顯示的問題,你可以使用numpy.set_printoptions(precision=3)

+0

謝謝!我可以問你,如果Matlab和Python使用相同的數字類型執行aritmetics?我正在比較使用Matlab和Python獲得的結果,它們不匹配 – gabboshow