YohLee / Learning

学习资料
2 stars 0 forks source link

Python questions #2

Open YohLee opened 7 years ago

YohLee commented 7 years ago

Scrapy运行ImportError: No module named win32api错误

windows系统上出现这个问题的解决需要安装Py32Win模块,但是直接通过官网链接装exe会出现几百个错误,更方便的做法是

pip install pypiwin32

YohLee commented 7 years ago

http://www.tuniu.com/tucom/area0-0-0-0-0-1-1-0-0-1.html response.xpath('//dl[@class="detail"]//span/text()').extract()[0].encode('utf-8') --注:span前为何为//

YohLee commented 6 years ago

// 整数除法 13/5 13//5

可以使用dir函数查看所有可以使用的方法 s = " hello world " dir(s)