OS: Windows
バージョン:Windows7
ブラウザ:Google Chrome
環境:python 2.7.17
webスクレイピングをしようとしています。エラーが出て先へ進めません。
from urllib.request import urlopen
#Retrieve HTML string from the URL
html = urlopen("http://www.pythonscraping.com/exercises/exercise1.html")
print(html.read())
というコードを秀丸エディタでscrapetest.pyで保存したあと、pythonのIDEL画面で
$python scrapetest.py
と入力してF5で実行しようと思いましたが、エラーが出て先へ進めませんでした。
エラーの内容は、
There's an error in your program:
invalid syntax
というふうに出ました。
何か解決策はありますか?
「pythonのIDEL画面」とはIDLE Shellのことでしょうか?
回答1件
あなたの回答
tips
プレビュー