*Python* 格式化輸出 小數點為0不顯示
版本 PythonV3.6
format 使用
print("{:g}".format(BMI))
使用螢光筆觸選擇 g
'g' : 一般格式 給定一精度P>=1 將數字 將有效位元保留
並根據其大小 進行格式化
並從有效數字中刪除不重要的尾數為0,若沒其他數 小數點為0也會被捨去
https://docs.python.org/3/library/string.html#formatspec
https://blog.csdn.net/woddle/article/details/78497289
format 使用
print("{:g}".format(BMI))
使用螢光筆觸選擇 g
'g' : 一般格式 給定一精度P>=1 將數字 將有效位元保留
並根據其大小 進行格式化
並從有效數字中刪除不重要的尾數為0,若沒其他數 小數點為0也會被捨去
https://docs.python.org/3/library/string.html#formatspec
https://blog.csdn.net/woddle/article/details/78497289
留言
張貼留言