• 技术文章 >常见问题 >Python常见问题

    python2.7无法写入txt解决方法

     Ly Ly2020-06-13 11:25:16原创2825

    问题描述:

    获取了接口返回的json数据,然后按行读取所有数据,把想着数据写到txt时,中文总显示例如: u'\u4e5d\u52a9\u5e55\

    解决方法:

    导入如下:

    import sys
    reload (sys)
    sys.setdefaultencoding('utf-8')

    写文件时直接open后用write即可:

    file = open(str(f) + '.txt', 'w')     #打开文本文件,如果没有将新建
    file.write('orig_id:%s'%orig_id[b]+',')
    专题推荐:python
    上一篇:python2.7是python几? 下一篇:python安装lxml模块时发生错误解决方法

    相关文章推荐

    • python写入csv不覆盖原数据• Python写入SQL乱码怎么解决

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网