python中format 方法的使用

2022-09-01 10:33:13 字數 3667 閱讀 1273

在python3中,字串格式化操作通過format()方法,format()方法擁有更多的功能,操作起來更加方便。該函式將字串當成乙個模板,通過傳入的引數進行格式化,並且使用大括號{}作為特殊字元代替%

不指定位置的時候,使用預設位置

不指定格式化位置,按照預設順序格式化

s = 'i {} {}, and i\'am learning'.format('like', 'python')

print(s)

示例結果:

i like python, and i'am learning

設定位置

設定數字順序指定格式化的位置

s = 'i  , and i\'am learning'.format('like', 'python')

print(s)

# 打亂順序

s = 'i , and i\'am learning'.format('like', 'python')

print(s)

示例結果:

i like python, and i'am learning

i python like python, and i'am learning

設定關鍵字

設定關鍵字指定格式化的內容

s = 'i  , and i\'am learning'.format(p='python', l='like')

print(s)

s = 'i , and i\'am learning'.format(p='python', l='like')

print(s)

示例結果:

i like python, and i'am learning

i python like, and i'am learning

我們可以傳入各種型別引數格式化字串,即不限於字串變數或數字等。

元組傳參

利用元組傳參,傳參形式*tuple

# 定義乙個元組

t = 'like', 'python'

# 不指定順序

s = 'i {} {}, and i\'am learning'.format(*t)

print(s)

# 指定順序

s = 'i , and i\'am learning'.format(*t)

print(s)

示例結果:

i like python, and i'am learning

i like python, and i'am learning

字典傳參

# 定義乙個字典

d =

# 指定鍵確定順序

s = 'i , and i\'am learning'.format(**d)

print(s)

示例結果:

i like python, and i'am learning

列表傳參

# 定義乙個列表

l0 = ['like', 'python']

l1 = [' ', 'lerning']

# ``前的0、1用於指定傳入的列表順序

s = 'i , and i\'am learning'.format(l0, l1)

print(s)

示例結果:

i like lerning, and i'am learning

format通過豐富的的「格式限定符」(語法是{}中帶:號)對需要格式的內容完成更加詳細的制定。

進製轉換

我們可以再限定符中制定不同的字元對數字進行進製轉換的格式化,進製對應的**:含義b

二進位制c

unicode 字元

d十進位制整數

o八進位制數

x十六進製制數,a 到 f 小寫

x十六進製制數,a 到 f 大寫

n = 99

print(''.format(n))

print(''.format(n))

print(''.format(n))

print(''.format(n))

print(''.format(n))

print(''.format(n))

示例結果:

1100011c99

14363

63

填充與對齊

:號後面帶填充的字元,只能是乙個字元,不指定的話預設是用空格填充,且填充常跟對齊一起使用,^<>分別是居中、左對齊、右對齊,後面帶寬度。

n = 99

print(''.format(n))

print(''.format(n))

print(''.format(n))

print(''.format(n))

示例結果:叉車租賃

99

------99

99------

---99---

精度:號後面設定精度(以.開始加上精度),然後用f結束,若不是設定,預設為精度為6,自動四捨五入,可帶符號顯示數字正負標誌。

n = 99.1234567

nn = -99.1234567

print(''.format(n))

print(''.format(n))

print(''.format(n))

print(''.format(nn))

示例結果:

99.123457

99.12

+99.12

-99.12

轉義我們可以使用大括號 {} 來轉義大括號。

p = 'python'

s = 'i like {}, and }'.format(p)

print(s)

示例結果:

i like python, and 

python中format的用法

格式化輸出format python學習筆記 用format函式實現對齊列印 居中對齊 靠左對齊 靠右對齊 居中對齊示例 def show n tail 2 n 1 最底下一行顯示出 2 n 1 個星號 width len tail 計算星號所在行的寬度,作為其他行的對齊基準 for i in ra...

python的format方法使用詳解

從python2.6開始,新增了一種格式化字串的函式str.format 它增強了字串格式化的功能。基本語法是通過 和 來代替以前的 format方法可以接受無限個引數,位置可以不按順序。不指定format方法的關鍵字引數 format hello world 不設定指定位置,按預設順序 hello...

python中強大的format函式

自python2.6開始,新增了一種格式化字串的函式str.format 此函式可以快速處理各種字串。語法它通過 和 來代替 請看下面的示例,基本上總結了format函式在python的中所有用法 1 通過位置 2print format chuhao 20 34 print format chuh...