无法导入pprint

Thr*_*ynn 5 python import pprint

在这里编程新手.每当我尝试在Python IDLE中"导入pprint"时,我都会收到以下错误:

>>> import pprint
Traceback (most recent call last):
  File "<pyshell#21>", line 1, in <module>
    import pprint
  File "C:\Python34\pprint.py", line 10, in <module>
    pprint(count)
NameError: name 'pprint' is not defined
Run Code Online (Sandbox Code Playgroud)

以为我会尝试在命令行中"pip install pprint",但这也不起作用:

PS C:\Python34> pip install pprint
Collecting pprint
Could not find a version that satisfies the requirement pprint (from versions: )
No matching distribution found for pprint 
Run Code Online (Sandbox Code Playgroud)

我认为Python 3.4.3应该带有pprint模块.我如何让它工作?似乎无法导入pprint,但所有其他模块都工作正常.我需要pprint模块来完成Automate The Boring Stuff with Python的一些练习.谢谢你看我的问题.

Rob*_*obᵩ 10

你已经命名了一个程序pprint.将程序重命名为除以外的程序pprint.py并删除pprint.pyc可能存在的任何文件.