码迷,mamicode.com
首页 > 其他好文 > 详细

中文注释报错 SyntaxError: Non-ASCII character

时间:2018-11-29 19:59:07      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:argument   put   ali   from   err   error:   expected   unicode   syntax   

 

报错: SyntaxError: Non-ASCII character

概意思是,默认文件是ASCII格式,需要更改文件编码,操作是在文件首行加上

#!/usr/bin/python
# -*- coding:utf8 -*-




报错 :TypeError: unicode argument expected, got ‘str‘

if your environment is Python2.7, you can change code :
import io
and
output_stream·=io.StringIO()

to
from io import BytesIO as StringIO
output_stream·= StringIO()

 

报错:RuntimeError: Invalid DISPLAY variable

import matplotlib.pyplot as plt   后面加一行:
plt.switch_backend(‘agg‘)

中文注释报错 SyntaxError: Non-ASCII character

标签:argument   put   ali   from   err   error:   expected   unicode   syntax   

原文地址:https://www.cnblogs.com/Allen-rg/p/10040051.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!