python调用cmd显示中文乱码
Posted 风行天下-2080
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python调用cmd显示中文乱码相关的知识,希望对你有一定的参考价值。
os.system(‘dir‘)
解决方法加上
os.system(‘chcp 65001‘)
_____________________________________________________________
#!/usr/bin/python3
# -*- coding: UTF-8 -*-
import os
os.system(‘chcp 65001‘)
result = os.system(r"dir")
ss = "中华人民共和国"
print (result)
print (ss)
___________________________________________________________________
https://blog.csdn.net/andy985897924/article/details/79187035
以上是关于python调用cmd显示中文乱码的主要内容,如果未能解决你的问题,请参考以下文章
Python的raw_input语句包含中文,在Windows环境CMD中显示乱码的解决方法
PyCharm编写 os.system调用cmd输出乱码,直接print中文是正常的,用Python的工具去调用os.system 也正常