成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Python如何輸出百分比

瀏覽:22日期:2022-07-15 16:46:27

Python 輸出百分比的兩種方式

注: 在python3環(huán)境下測(cè)試。

方式1:直接使用參數(shù)格式化:{:.2%}

{:.2%}: 顯示小數(shù)點(diǎn)后2位

顯示小數(shù)點(diǎn)后2位:

>>> print(’percent: {:.2%}’.format(42/50))percent: 84.00%

不顯示小數(shù)位:{:.0%},即,將2改為0:

>>> print(’percent: {:.0%}’.format(42/50))percent: 84%

方式2:格式化為float,然后處理成%格式: {:.2f}%

與方式1的區(qū)別是:

(1) 需要對(duì)42/50乘以 100 。 (2) 方式2的%在{ }外邊,方式1的%在{ }里邊。

顯示小數(shù)點(diǎn)后2位:

>>> print(’percent: {:.2f}%’.format(42/50*100))percent: 84.00%

顯示小數(shù)點(diǎn)后1位:

>>> print(’percent: {:.1f}%’.format(42/50*100))percent: 84.0%

只顯示整數(shù)位:

>>> print(’percent: {:.0f}%’.format(42/50*100))percent: 84%

說(shuō)明

{ } 的意思是對(duì)應(yīng)format()的一個(gè)參數(shù),按默認(rèn)順序?qū)?yīng),參數(shù)序號(hào)從0開始,{0}對(duì)應(yīng)format()的第一個(gè)參數(shù),{1}對(duì)應(yīng)第二個(gè)參數(shù)。例如:

默認(rèn)順序:

>>> print(’percent1: {:.2%}, percent2: {:.1%}’.format(42/50, 42/100))percent1: 84.00%, percent2: 42.0%

指定順序:

{1:.1%}對(duì)應(yīng)第2個(gè)參數(shù); {0:.1%}對(duì)應(yīng)第1個(gè)參數(shù)。

>>> print(’percent2: {1:.1%}, percent1: {0:.1%}’.format(42/50, 42/100))percent2: 42.0%, percent1: 84.0%

到此這篇關(guān)于Python 如何輸出百分比的文章就介紹到這了,更多相關(guān)Python 輸出百分比內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標(biāo)簽: Python 編程
相關(guān)文章: