python2.x默认不支持中文输出,需要在py的开头添加
#coding: utf-8
在pycharm里面,选项,editor,file and code templates,选择python script,改成下面的即可。
#coding: utf-8def run(): print("hello")if __name__ == "__main__": run()
本文共 251 字,大约阅读时间需要 1 分钟。
python2.x默认不支持中文输出,需要在py的开头添加
#coding: utf-8
在pycharm里面,选项,editor,file and code templates,选择python script,改成下面的即可。
#coding: utf-8def run(): print("hello")if __name__ == "__main__": run()
转载于:https://www.cnblogs.com/ziyouchutuwenwu/p/3480035.html