您好,登錄后才能下訂單哦!
不懂解決python讓數(shù)字右對(duì)齊的方法?其實(shí)想解決這個(gè)問(wèn)題也不難,下面讓小編帶著大家一起學(xué)習(xí)怎么去解決,希望大家閱讀完這篇文章后大所收獲。
python中使用format()方法格式化數(shù)字設(shè)置右對(duì)齊:< (默認(rèn))左對(duì)齊、> 右對(duì)齊、^ 中間對(duì)齊、= (只用于數(shù)字)在小數(shù)點(diǎn)后進(jìn)行補(bǔ)齊
>>> print('{} and {}'.format('hello','world')) # 默認(rèn)左對(duì)齊
hello and world
>>> print('{:10s} and {:>10s}'.format('hello','world')) # 取10位左對(duì)齊,取10位右對(duì)齊
hello and world
>>> print('{:^10s} and {:^10s}'.format('hello','world')) # 取10位中間對(duì)齊
hello and world
>>> print('{} is {:.2f}'.format(1.123,1.123)) # 取2位小數(shù)
1.123 is 1.12
>>> print('{0} is {0:>10.2f}'.format(1.123)) # 取2位小數(shù),右對(duì)齊,取10位
1.123 is 1.12
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享解決python讓數(shù)字右對(duì)齊的方法內(nèi)容對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問(wèn)題就找億速云,詳細(xì)的解決方法等著你來(lái)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。