答案 0 :(得分:1)
email = "test@gmail.com"
"this is my e-mail:{email}".format(
email=email,
)
结果是
this is my e-mail:test@gmail.com
这是你想要的吗?
我需要更多细节描述
答案 1 :(得分:0)
您可以将str.format()
用于此目的。
示例:
link = 'https://google.com'
mymail = 'Hello friend!\nCheck this out {}'.format(link)
print mymail
>>> Hello friend!
>>> Check this out https://google.com