欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

学习笔记(27):Python 面试100讲(基于Python3.x)-Python字符串格式化知多少

程序员文章站 2022-07-14 23:18:00
...

立即学习:https://edu.csdn.net/course/play/26755/340104?utm_source=blogtoedu

有多少字符串格式化的方法:

       1.%

       2.模板字符串

       3.formt函数

如何使用模板字符串:

from string import Template
text = Template("I love my $s. My $s loves me,too.")
print(text.substitute(s = "father"))

"""结果:
I love my father. My father loves me,too. """

 

相关标签: 研发管理