-2

I am using Version 3.9.0 and also 3.8.5 for some tests i am a begginer with 6 months experience. Anyone can pls help me Thank you in advance, And i saw this urllib.request module fails to install in my system but then it kept going.

  • 1
    [`urllib`](https://docs.python.org/3/library/urllib.html) is part of the Python Standard Library and is already installed. – Matthias Jan 05 '21 at 10:03

1 Answers1

1

enter image description here

You can use it without installing it. Can you please try this :

from urllib.request import urlopen
html = urlopen("http://www.google.com/").read()
print(html)
r.burak
  • 514
  • 5
  • 10