python format 格式化函式 部分

2021-09-11 14:30:57 字數 1543 閱讀 4652

基本語法:

通過 {} 和 : 來代替以前的 % 

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

# 不設定指定位置,按預設順序

str1 = "{} {}".format("hello", "world")

print('str1 :'+str1)

# 設定指定位置

str2 = " ".format("hello", "world")

print('str2 :'+str2)

# 設定指定位置

str3 = " ".format("hello", "world")

print('str3 :'+str3)

str1 :hello world

str2 :hello world

str3 :world hello world

print("姓名:, 年齡 ".format(name="小明", age="18"))

# 通過字典設定引數

site =

print("姓名:, 年齡 ".format(**site))

# 通過列表索引設定引數

my_list = ['小明', '18']

print("姓名:, 年齡 ".format(my_list)) # "0" 是必須的

姓名:小明, 年齡 18

姓名:小明, 年齡 18

姓名:小明, 年齡 18

# 向 str.format() 傳入物件:

class test(object):

def __init__(self, value):

self.value = value

my_value = test('weew12')

print('value 為: '.format(my_value)) # "0" 是可選的

value 為: weew12
examples = ["this is the {} line".format(number) for number in range(1, 11)]

for example in examples:

print(example)

this is the 1 line

this is the 2 line

this is the 3 line

this is the 4 line

this is the 5 line

this is the 6 line

this is the 7 line

this is the 8 line

this is the 9 line

this is the 10 line

(待補充。。。)

Python format 格式化函式

數字 格式輸出 描述3.1415926 3.14 保留小數點後兩位 3.1415926 3.14 帶符號保留小數點後兩位 1 1.00 帶符號保留小數點後兩位 2.71828 3不帶小數505 數字補零 填充左邊,寬度為2 55 數字補x 填充右邊,寬度為4 1010xx 數字補x 填充右邊,寬度為...

Python format 格式化函式

python2.6 開始,新增了一種格式化字串的函式 str.format 它增強了字串格式化的功能。基本語法是通過 和 來代替以前的 format 函式可以接受不限個引數,位置可以不按順序。不設定指定位置,按預設順序 print format hello world 設定指定位置 print fo...

Python format 格式化函式

python2.6 開始,新增了一種格式化字串的函式 str.format 它增強了字串格式化的功能。栗子 name 雷歐 age 28 add m78星雲 print 你好,我叫 我來自 今年 歲.format name,add,age print 你好,我叫 name 我來自 add 今年 ag...