上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页
摘要: 在python3 中会出这个问题,而xrange( )函数时在python 2.x中的一个函数,在Python 3中,range()的实现方式与xrange()函数相同,所以就不存在专用的xrange( )解决方法1. 在python 3 中运行 将xran... 阅读全文
posted @ 2018-10-10 01:26 vercont 阅读(664) 评论(0) 推荐(0) 编辑
摘要: ImportError: No module named ‘commands’在Python3中执行shell脚本,想要获取其执行状态和标准输出、错误输出的数据,遇到这个错误,原因是commands模块已经被subprocess取代了Deprecated s... 阅读全文
posted @ 2018-10-10 00:55 vercont 阅读(844) 评论(0) 推荐(0) 编辑
摘要: ImportError: No module named ‘commands’在Python3中执行shell脚本,想要获取其执行状态和标准输出、错误输出的数据,遇到这个错误,原因是commands模块已经被subprocess取代了Deprecated s... 阅读全文
posted @ 2018-10-10 00:55 vercont 阅读(139) 评论(0) 推荐(0) 编辑
摘要: response.read() returns an instance of bytes while StringIO is an in-memory stream for text only. Use BytesIO instead.The StringI... 阅读全文
posted @ 2018-10-10 00:50 vercont 阅读(2095) 评论(0) 推荐(0) 编辑
摘要: response.read() returns an instance of bytes while StringIO is an in-memory stream for text only. Use BytesIO instead.The StringI... 阅读全文
posted @ 2018-10-10 00:50 vercont 阅读(402) 评论(0) 推荐(0) 编辑
摘要: python3import urllib2 import urllib2ImportError: No module named 'urllib2'python3.3里面,用urllib.request 代替 urllib2,所以可以这样兼容python2 ... 阅读全文
posted @ 2018-10-09 23:13 vercont 阅读(89) 评论(0) 推荐(0) 编辑
摘要: python3import urllib2 import urllib2ImportError: No module named 'urllib2'python3.3里面,用urllib.request 代替 urllib2,所以可以这样兼容python2 ... 阅读全文
posted @ 2018-10-09 23:13 vercont 阅读(969) 评论(0) 推荐(1) 编辑
摘要: From Python 3.0 changelog;The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.By... 阅读全文
posted @ 2018-10-09 22:57 vercont 阅读(266) 评论(0) 推荐(0) 编辑
摘要: From Python 3.0 changelog;The StringIO and cStringIO modules are gone. Instead, import the io module and use io.StringIO or io.By... 阅读全文
posted @ 2018-10-09 22:57 vercont 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 题意:在格子纸上:给出格子的单位长度C,和在上面圆的半径R;求出: 圆中有多少个完整的小正方形。(单位长度*单位长度)#include#include#includeusing namespace std;int main(){ int R, C; ... 阅读全文
posted @ 2018-10-09 20:57 vercont 阅读(100) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 35 下一页