python画完图后运行闪退解决办法
时间:2015-08-30 23:29:00
收藏:0
阅读:898
最近学习python,用matplotlib库画图,运行程序后,就会闪退。
解决办法:
python2.*后面加上:raw_input()
python3.*后面加上:input()
我的python是python3.2,最后需加input,如下:
如果你是3.*后面加的raw_input(),就会出现如下错误:
原文:http://19940312.blog.51cto.com/9279717/1689916
评论(0)