python字串格式化

2021-10-05 09:16:19 字數 1210 閱讀 4512

本文只做簡單的記錄,不深入研究用法,大牛可移步

引用:python基本格式化輸出

菜鳥教程-python 字串格式化

>>

> n1=

3.14158

>>

> n2=

1.2658

>>

>

print

("n1 is %.3f and n2 is %s"

%(n1, n2)

)n1 is

3.142

and n2 is

1.2658

引用:菜鳥教程-python format 格式化函式

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

>>

>

print

("n1 is and n2 is "

.format

(n1,n2)

)n1 is

3.14158

and n2 is

1.2658

>>

>

print

("n1 is and n2 is "

.format

(n1,n2)

)n1 is

3.142

and n2 is

1.2658

區別:在輸出字串中帶有「\」時,必須只能用fr

>>

>

print

(fr"n1 is and n2 is "

)n1 is

3.14158

and n2 is

1.2658

>>

>

print

(f"n1 is and n2 is "

)n1 is

3.142

and n2 is

1.2658

fr表示原生字串

>>

>

print

(f'd:\project\test.txt'

)d:\project est.txt

>>

>

print

(fr'd:\project\test.txt'

)d:\project\test.txt

Python 字串格式化

字串格式化 s 格式化為字串 format hello,s.s enough for ya?values world hot print format values hello,world.hot enough for ya?f 格式化為實數 浮點數 format pi with three dec...

python字串格式化

字串的格式化 在python中也有類似於c中的printf 的格式輸出標記。在python中格式化輸出字串使用的是 運算子,通用的形式為 其中,左邊部分的 格式標記字串 可以完全和c中的一致。右邊的 值組 如果有兩個及以上的值則需要用小括號括起來,中間用短號隔開。重點來看左邊的部分。左邊部分的最簡單...

Python字串格式化

字串的格式化 在python中也有類似於c中的printf 的格式輸出標記。在python中格式化輸出字串使用的是 運算子,通用的形式為 其中,左邊部分的 格式標記字串 可以完全和c中的一致。右邊的 值組 如果有兩個及以上的值則需要用小括號括起來,中間用短號隔開。重點來看左邊的部分。左邊部分的最簡單...