31 python中format方法:字段寬度、精度和千位分隔符 符號、對齊和用0填充

第六課  字段寬度、精度和千位分隔符(format方法)
# 字段寬度、精度和千位分隔符
#  100,000,000,000

# 讓一個數值在寬度爲2的範圍內輸出,若是數值沒到12位,左側填充空格  4位呢
print("a:{num:2}".format(num = 32)) # a:32
print("a:{num:4}".format(num = 32)) # a:  32 中間有2個空格 包括32這兩位 就是四個寬度

# 字段寬度 能夠用於 用python製做一個表 
#  create table
print("{header1:10}{header2:6}{header3:0}".format(header1="姓名",header2="年齡",header3=2))
# 姓名        年齡    2 
# 解釋一下上面輸出的結果
# 姓名後面到年齡(包含年齡是10個寬度) 年齡到2(包含年齡不包含2)是6個寬度 2後面沒有空格 0個寬度
print("{header1:10}{header2:2}".format(header1="姓名",header2="年齡"))
print("{cell11:10}{cell12:2}".format(cell11 = "Bill", cell12=43))
print("{cell21:10}{cell22:4}".format(cell21 = "Mike", cell22=34))
'''
姓名        年齡
Bill      43
Mike        34
注意數字是左補空格 對於字符串是右補空格 
'''

# 精讀
from math import pi
print("float number:{pi:.3f}".format(pi = pi)) # float number:3.142
print("float number:{pi:20.4f}".format(pi = pi))
# float number:              3.1416
# 解釋:包含數字是20位

# 截取字符串
print("{msg:.5}".format(msg = "Hello World")) # Hello
# 解釋 截取前5個字符串
print("{msg:.3}".format(msg = "Hello World")) # Hel

# 千位分隔符
print("One googol is {:,}".format(10 ** 10)) 
# One googol is 10,000,000,000
第七課 符號、對齊和用0填充 (fromat方法) 
# 符號、對齊和用0填充
# 12  00000012

from math import pi
print("{pi:012.3f}".format(pi = pi))  # 00000003.142
print("{pi:#12.3f}".format(pi = pi))  #       3.142        前面寫# 也是表示 空格 填充 

# <(左對齊) ^(中對齊) >(右對齊)默認是右對齊
print("{pi:#<12.3f}".format(pi = pi)) # 3.142#######
print("{pi:#^12.3f}".format(pi = pi)) # ###3.142####
print("{pi:?>12.3f}".format(pi = pi)) # ???????3.142

print("{pi:0=12.3f}".format(pi = -pi))# -0000003.142
print("{pi:?=12.3f}".format(pi = -pi)) # -??????3.142
print("{pi:=12.3f}".format(pi = -pi)) # -      3.142
相關文章
相關標籤/搜索