美文网首页
指定python3的区域首选编码为utf8

指定python3的区域首选编码为utf8

作者: 墨垣 | 来源:发表于2021-08-18 17:24 被阅读0次

    来源 https://stackoverflow.com/questions/31469707/changing-the-locale-preferred-encoding-in-python-3-in-windows
    有效代码

    import locale
    def getpreferredencoding(do_setlocale = True):
        return "utf-8"
    locale.getpreferredencoding = getpreferredencoding
    

    相关文章

      网友评论

          本文标题:指定python3的区域首选编码为utf8

          本文链接:https://www.haomeiwen.com/subject/nkagbltx.html