Python字符串格式化是一种在Python编程中常用的技术,它可以将字符串中的模板变量替换为指定的值,从而达到格式化字符串的目的。Python字符串格式化有两种常用的方法,一种是使用字符串的format方法,另一种是使用字符串的%操作符。下面给出使用这两种方法的示例代码:
# 定义模板变量 name = 'John' age = 20 # 使用format方法格式化字符串 str1 = 'My name is {name}, I am {age} years old.'.format(name=name, age=age) # 输出格式化后的字符串 print(str1)
# 定义模板变量 name = 'John' age = 20 # 使用%操作符格式化字符串 str2 = 'My name is %s, I am %d years old.' % (name, age) # 输出格式化后的字符串 print(str2)
以上就是,通过使用这两种方法,我们可以很方便地将模板变量替换为指定的值,从而达到格式化字符串的目的。
本文链接:http://task.lmcjl.com/news/1827.html