程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python的格式化方法format

編輯:Python

Python的格式化方法format

  • 有時候我們會想要從其他信息中構建字符串,最好使用 format() 方法。
# format:格式化
# 字符串的format格式化方法
name = "Chen Yuxin"
age = 18
print("my name is {0} , now i am {1} years old.".format(name, age))
# my name is Chen Yuxin , now i am 18 years old.
# 數字索引只是一個可選選項,所以你同樣可以不寫
print("my name is {} , now i am {} years old.".format(name, age))
# my name is Chen Yuxin , now i am 18 years old.
# format 方法所做的事情便是將每個參數值替換至格式所在的位置,這之中可以有更詳細的格式。
# 1.浮點數顯示3位小數點
print("float is {:.3f}".format(1 / 3))
# float is 0.333
# 2.使用*填充文本,並保持文字處於中間位置
# 使用 (^) ,定義 '***hello***'字符串長度為 11
print('{:*^11}'.format('hello'))
# ***hello***
# 3.基於關鍵詞輸出 'Swaroop wrote A Byte of Python'
print('{name} wrote {book}'.format(name='Swaroop', book='A Byte of Python'))
# Swaroop wrote A Byte of Python

  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved