gpt4 book ai didi

python - 将类实例的字符串表示写入文件

转载 作者:太空宇宙 更新时间:2023-11-04 08:12:44 26 4
gpt4 key购买 nike

我已经在我的class foo
中定义了__str____repr__当我 print foo() 时,它工作正常。
当然,将 stdout 重新定义为 file 对象并调用 print foo() 会将字符串表示形式写入文件,但这是最符合 Python 风格的方法吗?< br/>

最佳答案

只需调用 strrepr在对象上,像这样:

with open('somefile.txt', 'w') as f:
f.write(repr(foo()))

关于python - 将类实例的字符串表示写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19330089/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com