これは「ロメオとジュリエット」の戯曲全文を掲載したテキストページの冒頭250文字だけを表示しています。
(178978文字があり、最初の250文字だけ表示)
import requests res=requests.get("https://automatetheboringstuff.com/files/rj.txt") type(res) ↓↓↓ requests.models.Response res.status_code==requests.codes.ok ↓↓↓ True len(res.text) ↓↓↓ 178978 print(res.text[:250]) ↓↓↓ The Project Gutenberg EBook of Romeo and Juliet, by William Shakespeare This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Projec #冒頭250文字が表示
これにそのロミオとジュリエットの全文が書かれているWebブラウザ("https://automatetheboringstuff.com/files/rj.txt")を起動できるようにしたいのですが、以下のコードでwebbrowser.open("https://automatetheboringstuff.com/files/rj.txt")を追加してもエラーが出てしまいます。
どうすればWebブラウザが立ち上げられるようにすれば良いか教えてほしいです。
よろしくお願いします。
import requests res=requests.get("https://automatetheboringstuff.com/files/rj.txt") type(res) ↓↓↓ requests.models.Response res.status_code==requests.codes.ok ↓↓↓ True len(res.text) ↓↓↓ 178978 print(res.text[:250]) ↓↓↓ The Project Gutenberg EBook of Romeo and Juliet, by William Shakespeare This eBook is for the use of anyone anywhere at no cost and with almost no restrictions whatsoever. You may copy it, give it away or re-use it under the terms of the Projec webbrowser.open("https://automatetheboringstuff.com/files/rj.txt") ↓↓↓ NameError Traceback (most recent call last) <ipython-input-27-e491f8d55c28> in <module> ----> 1 webbrowser.open("https://automatetheboringstuff.com/files/rj.txt") NameError: name 'webbrowser' is not defined #エラーが表示
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/04 02:59