python 的from语句出错的解决方法

from selenium import webdriver
^
IndentationError: unexpected indent

错误原因:

from语句不能缩进

解决方法:

from语句前面不能有空格,消除前面的空白即可