编程语言
首页 > 编程语言> > python字符串的格式化

python字符串的格式化

作者:互联网

格式化方式1: 使用f""

1.1 使用示例

 1 # -*- coding: utf-8 -*-
 2 # @Time    : 2020/4/22 22:35
 3 # @Author  : chinablue
 4 
 5 # 替换变量
 6 name = "chinablue"
 7 
 8 # 格式化字符串
 9 res_str = f"hello {name}"
10 
11 print(res_str)
View Code

1.2 注意事项

格式化方式2: 使用string.Template

4.1 使用示例

 1 # -*- coding: utf-8 -*-
 2 # @Time    : 2020/4/22 22:35
 3 # @Author  : chinablue
 4 
 5 import string
 6 
 7 # 字典中的key为变量
 8 d = {
 9     "name" : "chinablue"
10 }
11 
12 # 替换字符串可以写成 $name 或 ${name}; 默认的定界符为$
13 s = string.Template("hello ${name}")
14 
15 # 执行字符串替换,
16 res_str = s.substitute(d)
17 
18 print(res_str)
View Code

4.2 注意事项

标签:格式化,string,python,chinablue,字符串,substitute,name
来源: https://www.cnblogs.com/reconova-56/p/12782979.html