如何解决Python 中的简单模板请不要使用模板引擎
此代码
txt = "f'{string} a great day'"
with open('new.txt','w',encoding='utf-8') as out:
out.write(f'{string} a great day')
在 new.txt 文件中写入“祝您有美好的一天”。
此代码
txt = "f'{string} a great day'"
with open('new.txt',encoding='utf-8') as out:
out.write(txt)
没有。它写字面
f'{string} a great day'
在 new.txt 文件中。
为什么?
解决方法
第二个代码是一个包含 f''
的字符串,python 不会响应/格式化值。但是有一个你想要的解决方案,你必须使用 eval 函数。
txt = "f'{string} a great day'"
with open('new.txt','w',encoding='utf-8') as out:
out.write(eval(txt))
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。