【1】 使用 %
格式化三引号内的字符串
title = '女士包包'
link = 'https://item.jd.com/100010457228.html'
price = '339'
commit = '5000+'
msg = '''
商品:%s
链接:%s
价格:%s
评论:%s
'''%(title, link, price, commit)
print(msg)
打印结果
商品:女士包包
链接:https://item.jd.com/100010457228.html
价格:339
评论:5000+
【2】 使用 format()
方法格式化双引号内的字符串
name = 'Jane'
age = '18'
print('我的名字是{}, 我的年龄是{}'.format(name, age))
打印结果
我的名字是Jane, 我的年龄是18
未完待续……