Python 3: AttributeError: el objeto 'módulo' no tiene el atributo '__path__' usando urllib en la terminal

Mi código se está ejecutando perfectamente en PyCharm, pero tengo mensajes de error al intentar abrirlo en la terminal. ¿Qué tiene de malo mi código o dónde cometí errores?

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

Salida desde 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

Respuestas a la pregunta(3)

Su respuesta a la pregunta