核心代码: def ipPools(numPage): headers = randomHeads() url = 'http://www.xicidaili.com/nn/' saveFsvFile = open('ips.csv', 'wb') writer = csv.writer(saveFsvFile) for num in range(1, numPage + 1): full_url = url + str(num) re = requests.get(full_url, head…
Traceback (most recent call last): File , in <module> s.sendall(content) TypeError: a bytes-like object is required, not 'str' --scala_out: protoc-gen-scala: Plugin failed with status code . [error] java.lang.RuntimeException: protoc returned exit c…
☞ ░ 前往老猿Python博文目录 ░ 执行TextClip.search方法时,报错: >>> from moviepy.editor import * >>> TextClip.search('red','color') Traceback (most recent call last): File "<pyshell#1>", line 1, in <module> TextClip.search('red','col…
源程序: import socket target_host = "www.baidu.com" # 127.0.0.1 target_port = 80 # 建立一个socket对象 client = socket.socket(socket.AF_INET,socket.SOCK_STREAM) # 创建TCP连接 # 连接客户端 client.connect((target_host,target_port)) client.send("GET / HTTP/1.1\r…
检查一遍报错的所在行,此报错一般是在整数上加了下标: 比如:   a = 4   c=a[2] 报错:line 2, in <module>    c=a[2] TypeError: 'int' object is not subscriptable 再比如复杂一点的:二维…
出现该错误往往是通过open()函数打开文本文件时,使用了'rb'属性,如:fileHandle=open(filename,'rb'),则此时是通过二进制方式打开文件的,所以在后面处理时如果使用了str()函数,就会出现该错误,该错误不会再python2中出现. 具体解决方法有以下两种: 第一种,在open()函数中使用'r'属性,即文本方式读取,而不是'rb',以二进制文件方式读取,可以直接解决问题. 第二种,在open()函数中使用'rb',可以在使用之前进行转换,有以下实例,来自:htt…
在pycharm中安装pandas出现报错:AttributeError: 'module' object has no attribute 'main', 刚开始以为是pip的版本太旧了,于是乎将其做了升级(python -m pip install -U pip),结果还是不行. 百度了好多都没有找到问题出现在哪里,后面看到了一篇博文中说到时因为 新版的 pip 更改了 部分api 将其中 pip.main() 改为 pip_main(), 旧版的pycharm中 在packaging_to…
利用pipenv shell切换到虚拟环境时,显示报错:AttributeError: 'module' object has no attribute 'run' 可以看到是d:\program\python34\lib\site-packages\pipenv\shells.py文件的第62行报错了,提示模块没有run的属性,于是就跑到该文件的第62行去看 选中run,CTRL+B发现能看到源码,源码如下: if sys.version_info >= (3, 6): # Nearly sa…
今天在使用Python文件处理写网络上爬取的文件的时候,遇到了错误:UnicodeEncodeError: ‘gbk’ codec can’t encode character ‘\xa0’ in position … 这个问题. 代码: import urllib.request #等价与from urllib import request response = urllib.request.urlopen("http://www.baidu.com") print("查看…
Python报错总结: 常见异常 1,NameError: name 'a' is not defined:未定义函数名             2,IndentationError: unindent does not match any outer indentation level :代码缩进问题 3,IndentationError: unexpected indent:代码缩进问题 4,TypeError: %d format: a number is required, not st…