问题1:python语法错误
错误日志如下:
print(a[2])
^
IndentationError: unexpected indent
【解决方案】:缩进代码错误导致,将print的缩进往前靠近即可
问题2:pip安装selenium 报错Traceback (most recent call last);socket.timeout: The read operation timed out
现象如图:
【解决方案】
使用命令:pip install -U selenium 而不是网上说的pip install selenium
问题3..