1. 程式人生 > >Python之format的用法詳解

Python之format的用法詳解

format函式

它增強了字串格式化的功能。基本語法是通過 {} 和 : 來代替以前的 % 。format 函式可以接受不限個引數,位置可以不按順序。

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

"{} {}".format("hello", "world")    # 不設定指定位置,按預設順序
執行結果:'hello world'

 "{0} {1}".format("hello", "world")  # 設定指定位置
執行結果:'hello world'

"{1} {0} {1}".format("hello", "world")  # 設定指定位置
執行結果:'world hello world'

例二:也可以設定引數。

print("網站名:{name}, 地址 {url}".format(name="菜鳥教程", url="www.runoob.com"))

# 通過字典設定引數
site = {"name": "菜鳥教程", "url": "www.runoob.com"}
print("網站名:{name}, 地址 {url}".format(**site))

# 通過列表索引設定引數
my_list = ['菜鳥教程', 'www.runoob.com']
print("網站名:{0[0]}, 地址 {0[1]}".format
(my_list)) # "0" 是必須的 執行結果: 網站名:菜鳥教程, 地址 www.runoob.com 網站名:菜鳥教程, 地址 www.runoob.com 網站名:菜鳥教程, 地址 www.runoob.com

例三:也可以向 str.format() 傳入物件:

class AssignValue(object):
    def __init__(self, value):
        self.value = value
my_value = AssignValue(6)
print('value 為: {0.value}'.format(my_value))  # "0" 是可選的
輸出結果為: value 為: 6

例四:下表展示了 str.format() 格式化數字的多種方法

print("{:.2f}".format(3.1415926));
3.14

數字格式化方法

數字 格式 輸出 描述
3.1415926 {:.2f} 3.14 保留小數點後兩位
3.1415926 {:+.2f} +3.14 帶符號保留小數點後兩位
-1 {:+.2f} -1.00 帶符號保留小數點後兩位
2.71828 {:.0f} 3 不帶小數
5 {:0>2d} 05 數字補零 (填充左邊, 寬度為2)
5 {:x<4d} 5xxx 數字補x (填充右邊, 寬度為4)
10 {:x<4d} 10xx 數字補x (填充右邊, 寬度為4)
1000000 {:,} 1,000,000 以逗號分隔的數字格式
0.25 {:.2%} 25.00% 百分比格式
1000000000 {:.2e} 1.00e+09 指數記法
13 {:10d} 13 右對齊 (預設, 寬度為10)
13 {:<10d} 13 左對齊 (寬度為10)
13 {:^10d} 13 中間對齊 (寬度為10)
‘{:b}’.format(11) 1011
‘{:d}’.format(11) 11
11的進位制 ‘{:o}’.format(11) 13
‘{:x}’.format(11) b
‘{:#x}’.format(11) 0xb
‘{:#X}’.format(11) 0XB

^, <, > 分別是居中、左對齊、右對齊,後面頻寬度, : 號後面帶填充的字元,只能是一個字元,不指定則預設是用空格填充。
+ 表示在正數前顯示 +,負數前顯示 -; (空格)表示在正數前加空格
b、d、o、x 分別是二進位制、十進位制、八進位制、十六進位制。

例五:
給你一個字典:
t={‘year’:’2013’,’month’:’9’,’day’:’30’,’hour’:’16’,’minute’:’45’,’second’:’2’}
請按這樣的格式輸出:2013-09-30 16:45:02

def data_to_str(d):
    '''
    :param d: 日期字典
    :return: str 格式化後的日期
    '''

    s1='{} {:>02} {:>02}'.format(t['year'],t['month'],t['day'])
    s2='{} {:>02} {:>02}'.format(t['hour'],t['minute'],t['second'])
    print(s1,s2)
    print('-'.join(s1.split()),end=' ')
    print(':'.join(s2.split()))
    return 0
t={'year':'2013','month':'9','day':'30','hour':'16','minute':'45','second':'2'}
print(data_to_str(t))
執行結果:
2013 09 30 16 45 02
2013-09-30 16:45:02