簡單介紹python format格式化和數字格式化

大雄45發表於2022-12-21
導讀 這篇文章主要介紹了python format格式化和數字格式化,格式化字串的函式 str.format(),它增強了字串格式化的功能,基本語法是透過{} 和 : 來代替以前的 % ,下面內容介紹,需要的朋友可以參考一下
1.format() 基本用法

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

它增強了字串格式化的功能

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

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

a = "姓名:{0},年齡:{1}"
print(a.format("小明",18))
  
b = "姓名:{0},年齡:{1},{0}是個學生"
print(b.format("小明",18))
  
c = "姓名:{name},年齡:{age}"
print(c.format(age=19,name="小明"))

可以透過{索引}/{引數名},直接對映引數值,實現對字串的格式化;

2.填充與對齊

填充跟對齊一起使用

^,<,> 分別是居中,左對齊,右對齊,後面頻寬度

# :號後面帶填充的字元,只能是一個字元,不指定的話預設是用空格填充

print("{:*>8}".format("245"))
  
print("我是{0},我喜歡語文{1:*<8}".format("小明","666"))
  
print("我是{0},我喜歡語文{1:*>8}".format("小明","666"))
3.數字格式化

# 浮點數透過 f,整數透過 d 進行需要的格式化。

a = "{0},錢:{1:.2f}"
print(a.format("小明",3333.23456))
test_0="{0:.2f}"
print(test_0.format(3.1415926))
  
test_1="{0:+.2f}"
print(test_1.format(3.1415926))
  
test_2="{0:.0f}"
print(test_2.format(3.1415926))
  
test_3="{0:0>2d}"
print(test_3.format(5))
  
test_4="{0:x<4d}"
print(test_4.format(5))
  
test_5="{0:,}"
print(test_5.format(1000000))
  
test_6="{0:.2%}"
print(test_6.format(0.25))
  
test_7="{0:.2e}"
print(test_7.format(10000000000))
  
test_8="{0:10d}"
print(test_8.format(13))
  
test_9="{0:<10d}"
print(test_9.format(13))
  
test_10="{0:^10d}"
print(test_10.format(13))

簡單介紹python format格式化和數字格式化簡單介紹python format格式化和數字格式化
簡單介紹python format格式化和數字格式化簡單介紹python format格式化和數字格式化

到此這篇關於python format格式化和數字格式化的文章就介紹到這了。

原文來自:

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2871532/,如需轉載,請註明出處,否則將追究法律責任。

相關文章