Python筆記之format 格式輸出全解

2022-01-14 21:35:41 字數 1579 閱讀 5804

格式化輸出:format()

format():把傳統的%替換為{}來實現格式化輸出

使用位置引數:就是在字串中把需要輸出的變數值用{}來代替,然後用format()來修改使之成為想要的字串,位置引數就是把傳統的%改為{},按照位置順序自動進行替換

'

my name is {},age:{}

'.format('

anxc

',18)

'my name is anxc,age:18

'

2.使用位置引數:在原有基礎上,通過位置的改變來讓替換的值根據位置改變(自我感覺沒什麼用,還不如第乙個好用)

'

my name is ,age:

'.format(18,'

anxc')

'my name is anxc,age:18

'

3.字元填充(左對齊,右對齊,居中對齊)

'右對齊'.format(10)

'右對齊########10'

4.使用關鍵字引數:利用key=value來實現一一對應的賦值替換

'

my name is,age:

'.format(name='

anxc

',age=18)

'my name isanxc,age:18

'

5.數字的精度輸出:自我感覺就像c語言的float型別的輸出。(格式:如果x為整數是無效的)

>>> '

'.format(1/3)

'0.3333

'>>> ''.format(100)

'100.000000'#目前沒有發現整數是啥用處

6.數字的進製輸出

二進位制b

八進位制o

十進位制十六進製制

x

'

18的二進位制:

'.format(18)

'18的二進位制:10010

'>>> '

18的八進位制:

'.format(18)

'18的八進位制:22

'>>> '

18的十六進製制:

'.format(18)

'18的十六進製制:12

'

7.數字的千分位劃分

>>> '

'.format(19012390123)

'19,012,390,123

'

8.通過下標來實現格式化

>>> person=['anxc',18]

'i am ,age:

'.format(person)

'i am anxc,age:18

'>>> x=[12,13]

>>> '

i am ,age:

'.format(person,x)

'i am anxc,age:13

'

9.通過物件的屬性來實現格式化(現在還沒學到python的類,所以沒有例子)

python 學習 筆記 format 用法

習慣了用 print s 這種結構來格式化輸出,今天無意中看到python 有format函式,讀了一遍它的幫助文件。使用起來還是比較方便的。摘錄出來。基本的按順序輸出 python版本需要2.7以上 format a b c a b c 輸出順序可以調整 format a b c b a c 右對...

python學習筆記 format 函式

使用str.format 函式 使用 佔位符 print i m format hongten welcome to my space print 40 也可以使用 形式的佔位符 print i m my e mail is format hello mongo mongo foxmail.com ...

python學習之format 函式

format 函式作為python的內建函式,用於格式化字串str.format 有了此函式可以快速處理各種字串。format 函式可以接受不限個引數,位置可以不按順序。format hello world 不設定指定位置,按預設順序 hello world format hello world 設...