使用python运行py文件时报错,这个怎么解决
Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> #coding=utf-8
>>> from selenium import webdriver
>>> driver = webdriver.Firefox()
>>> driver.get("http://www.baidu.com")
>>> import time
>>> time.sleep(2)
>>> driver.find_element_by_id("kw").send_keys("selenium")
>>> driver.find_element_by_id("su").click()
>>> driver.quit()
>>>
使用F5运行时出现“invalid syntax”
你连python的代码是怎么样的你都不知道。
合法的python代码前面没有>>> 。
先学学python基础再提问吧