python 3.3.2 エラー。urllib2' という名前のモジュールがない ソリューション
2022-02-12 14:47:22
pythonのコードです。
import urllib2
response = urllib2.urlopen('http://www.baidu.com/')
html = response.read()
print html
エラーは以下のように報告されます。
Traceback (most recent call last):
File "
import urllib2
ImportError: No module named 'urllib2'
Solution.
In python 3.3, use urllib.request instead of urllib2, and also after python 3, you can't use
print html
Note: The print stuff should be enclosed in ().
This is the way to do it, because print is already a method at this point. The following method must be used
The code can be replaced with.
import urllib.request
resp=urllib.request.urlopen('http://www.baidu.com')
html=resp.read()
print(html)
print html
関連
-
ImportError: 名前 '_validate_lengths' をインポートできない。
-
Pythonのエラーです。ModuleNotFoundError: pygame'という名前のモジュールはありません。
-
ModuleNotFoundError: _pywrap_tensorflow_internal'という名前のモジュールはありません。
-
python マルチスレッド操作エラー。logger "websocket "のハンドラが見つかりませんでした。
-
import urllib.parse ImportError: parse という名前のモジュールがありません
-
Python3+BeautifulSoupがUnicodeEncodeErrorを報告:'charmap' codec can't encode characters in position
-
plt.acorr() 関数の使用例 - ValueError: object too deep for desired array (オブジェクトが深すぎて、必要な配列が得られない)
-
Pythonソケットプログラミング [WinError 10061] ターゲットコンピュータがアクティブに拒否しているため、接続できない。
-
float32とfloat64の本質的な違い(ディープラーニングへの型影響とpythonの活用)。
-
python 1e-5とはどういう意味ですか?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
Pandasの属性エラーです。AttributeError: 'Series' オブジェクトに 'reshape' 属性がない Solution
-
Python pipのインストールと使用方法の詳細
-
from scipy.interpolate import spline errorImportError: cannot import name 'spline'.
-
AttributeError: 'NoneType' オブジェクトには 'group' という属性がありません。
-
仮想環境を作成するコマンドが見つからない virtualenv: コマンドが見つからない
-
Python3 xlsxwriterモジュールのインストール
-
Python による pyserial 経由でのシリアルポートの読み取りと書き込み
-
エラーの原因の1つ: 'encoding'はこの関数の無効なキーワード引数です。
-
アルゴリズム図 1.2 二項対立型ルックアップ TypeError: リストのインデックスは整数またはスライスでなければならず、float ではありません 解答
-
Python - pickleファイルの異なるPython環境への変換