python函數之format

自python2.6開始,新增了一種格式化字符串的函數str.format(),此函數能夠快速處理各類字符串,它加強了字符串格式化的功能。 
基本語法是經過{}和:來代替%。format函數能夠接受不限個參數,位置能夠不按順序。python

來看一個例子函數

>>> "{} {}".format("hello","world")#設置指定位置,按默認順序
'hello world'


>>> "{0} {1}".format("hello", "world")  # 設置指定位置
'hello world'


>>> "{1} {0} {1}".format("hello", "world")  # 設置指定位置
'world hello world'

也能夠設置參數網站

#!/usr/bin/python # -*- coding: UTF-8 -*-

print("姓名:{name}, 年齡 {year}".format(name="xiaoming", year=18)) # 經過字典設置參數
site = {"name": "xiaoming", "year": 18} print("網站名:{name}, 地址 {url}".format(**site)) # 經過列表索引設置參數
my_list = ['xiaoming',18] print("姓名:{0[0]}, 年齡 {0[1]}".format(my_list))  # "0" 是可選的

字符格式化

>>> print("{:.4}".format(3.1415926)) 3.142

format中有豐富的格式限定符,有不少格式限定的方法:url

1.填充與對齊

填充常跟對齊一塊兒使用 
^、<、>分別是居中、左對齊、右對齊,後面帶寬度 
:號後面帶填充的字符,只能是一個字符,不指定的話默認是用空格填充 
好比spa

>>> print("{:>7}".format(12))
     12
>>> print("{:0>7}".format(12))
0000012
>>> print("{:a>7}".format(12))
aaaaa12

2.精度與類型

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

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

數字 格式 輸出 描述
3.1415926 {:.2f} 3.14 保留小數點後兩位
3.1415926 {:+.2f} +3.14 帶符號保留小數點後兩位
-1 {:+.2f} -1.00 帶符號保留小數點後兩位
2.71828 {:.0f} 3 不帶小數
1000000 {:,} 1,000,000 以逗號分隔的數字格式
0.25 {:.2%} 25.00% 百分比格式
1000000000 {:.2e} 1.00e+09 指數記法

 

 

 

 

 

 

 

 

3.其餘類型orm

主要就是進制,b、d、o、x分別是二進制、十進制、八進制、十六進制blog

'{:b}'.format(11): 1011  
'{:d}'.format(11): 11
'{:o}'.format(11): 13
'{:x}'.format(11): b
'{:#x}'.format(11): 0xb
'{:#X}'.format(11): 0XB
相關文章
相關標籤/搜索