本文目录一览:
- 1、尝试编译Python文件失败,因为问题,怎么解决
- 2、Python编译出错
- 3、我在按书上编译python 源码时,老是提示错误,虽然输入正确,编译不成功(eclisp工具)
- 4、python 的报错记录
尝试编译Python文件失败,因为问题,怎么解决
SublimeText2编译Python文件出错,解决方法:
1.环境变量path添加:
C:\Python32\Tools\Scripts;D:\Python32;D:\Program Files\Sublime Text2;
2.Python.sublime-build内容修改
比如原内容:
{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
修改为(路径为安装文件夹):
{
"cmd": ["C:/Python26/python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
Python编译出错
你的程序是直接从python shell里面保存的吧?这会混进去很多额外的输出和提示符的,需要自行整理才行
我在按书上编译python 源码时,老是提示错误,虽然输入正确,编译不成功(eclisp工具)
我复制你的代码运行了一遍,没问题啊。
filemunu=wx.Menu()
filemenu.Append(wx.ID_ABOUT, "About"," Information about this program")
看来没问题的是源代码,你自己写的还是有问题,filemenu都没有定义,为什么呢,因为你定义的是filemunu而不是filemenu。。。。。。
python 的报错记录
import requests
r =requests.get(" ")
def gethtmltext():
try:
r = requests.get(url, timeout =30)
r.raise_for_status()
r.encoding = 'utf-8'
return r.text
except:
return""
url = ' '
print (gethtmltext(url))
报错:
TypeError: gethtmltext() takes 0 positional arguments but 1 was given
gethtmltext()函数没有参数,但是在使用时给了一个参数
在gethtmltext中增添一个参数即可
即def gethtmltext(url):