我有一个发送电子邮件的python脚本,但它需要替换两个单词。每当它替换它们时,它就会破坏格式化。例如,使用此脚本运行后的消息hello how are you my app is [name] and the url is [url]
然后将电子邮件发送为
hello how are you my app is AppName
and the app url is www.example.com
目前我正在使用message.replace("[name]", name).replace("[url]", url)
答案 0 :(得分:0)
使用基本的python方法将变量插入字符串
'hello how are you my app is %s and the app url is %s' % (appName, www.example.com)
在学习python中观察本节的难点:) http://learnpythonthehardway.org/book/ex6.html