Python如何輸出百分比
Python 輸出百分比的兩種方式
注: 在python3環境下測試。
方式1:直接使用參數格式化:{:.2%}
{:.2%}: 顯示小數點后2位
顯示小數點后2位:
>>> print(’percent: {:.2%}’.format(42/50))percent: 84.00%
不顯示小數位:{:.0%},即,將2改為0:
>>> print(’percent: {:.0%}’.format(42/50))percent: 84%
方式2:格式化為float,然后處理成%格式: {:.2f}%
與方式1的區別是:
(1) 需要對42/50乘以 100 。 (2) 方式2的%在{ }外邊,方式1的%在{ }里邊。
顯示小數點后2位:
>>> print(’percent: {:.2f}%’.format(42/50*100))percent: 84.00%
顯示小數點后1位:
>>> print(’percent: {:.1f}%’.format(42/50*100))percent: 84.0%
只顯示整數位:
>>> print(’percent: {:.0f}%’.format(42/50*100))percent: 84%
說明
{ } 的意思是對應format()的一個參數,按默認順序對應,參數序號從0開始,{0}對應format()的第一個參數,{1}對應第二個參數。例如:
默認順序:
>>> print(’percent1: {:.2%}, percent2: {:.1%}’.format(42/50, 42/100))percent1: 84.00%, percent2: 42.0%
指定順序:
{1:.1%}對應第2個參數; {0:.1%}對應第1個參數。
>>> print(’percent2: {1:.1%}, percent1: {0:.1%}’.format(42/50, 42/100))percent2: 42.0%, percent1: 84.0%
到此這篇關于Python 如何輸出百分比的文章就介紹到這了,更多相關Python 輸出百分比內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章: