首页 > 代码库 > python笔记

python笔记

以下都是在Mac下进行操作的

1.在终端中运行包含中文字符的.py文件时,会报错?

解决方法:

在文件最前面添加:

#encoding:utf-8

即可!

 

python笔记