Python 3: AttributeError: Das Objekt 'module' hat kein Attribut '__path__', das urllib in Terminal @ verwende

Mein Code läuft in PyCharm einwandfrei, aber ich habe Fehlermeldungen beim Versuch, ihn im Terminal zu öffnen. Was ist los mit meinem Code oder wo habe ich Fehler gemacht?

import urllib.request
with urllib.request.urlopen('http://python.org/') as response:
   html = response.read()
   print(html)

Ausgabe vom Terminal:

λ python Desktop\url1.py
Traceback (most recent call last):
  File "<frozen importlib._bootstrap>", line 2218, in _find_and_load_unlocked
AttributeError: 'module' object has no attribute '__path__'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "Desktop\url1.py", line 1, in <module>
    import urllib.request
  File "C:\Users\Przemek\Desktop\urllib.py", line 1, in <module>
    import urllib.request
ImportError: No module named 'urllib.request'; 'urllib' is not a package

Antworten auf die Frage(6)

Ihre Antwort auf die Frage