Python的格式化方法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