Python format 格式化函式

2021-08-19 17:35:19 字數 669 閱讀 4184

python2.6 開始,新增了一種格式化字串的函式 str.format(),它增強了字串格式化的功能。

基本語法是通過 {} 和 : 來代替以前的 % 。

format 函式可以接受不限個引數,位置可以不按順序。

# 不設定指定位置,按預設順序

print('{},{}!'.format('hello', 'world'))

# 設定指定位置

print(',!'.format('hello', 'world'))

# 設定指定位置

print(',,!'.format('hello', 'world'))

輸出結果

hello,world!

hello,world!

hello,world,world!

print('**名:, 位址 '.format(name='菜鳥教程', url='www.runoob.com'))

# 通過字典設定引數

site =

# 通過列表索引設定引數

my_list = ['菜鳥教程', 'www.runoob.com']

輸出結果

剩下的參考菜鳥教程

主要是關於數字格式化

Python format 格式化函式

數字 格式輸出 描述3.1415926 3.14 保留小數點後兩位 3.1415926 3.14 帶符號保留小數點後兩位 1 1.00 帶符號保留小數點後兩位 2.71828 3不帶小數505 數字補零 填充左邊,寬度為2 55 數字補x 填充右邊,寬度為4 1010xx 數字補x 填充右邊,寬度為...

Python format 格式化函式

python2.6 開始,新增了一種格式化字串的函式 str.format 它增強了字串格式化的功能。栗子 name 雷歐 age 28 add m78星雲 print 你好,我叫 我來自 今年 歲.format name,add,age print 你好,我叫 name 我來自 add 今年 ag...

python format 數字格式化

python format 數字格式化 num 123456789.8952555 str1 format num 0.2f print type str1 print str1 國際貨幣 amt 123456789 str2 format amt print str2 str3 format am...