Python 3: AttributeError: o objeto 'module' não tem atributo '__path__' usando urllib no terminal

Meu código está funcionando perfeitamente no PyCharm, mas tenho mensagens de erro ao tentar abri-lo no terminal. O que há de errado com meu código ou onde eu cometi erros?

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

Saída do 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

questionAnswers(3)

yourAnswerToTheQuestion