在这里编程新手。每当我尝试导入pprint'在Python IDLE中,我收到以下错误:
>>> 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
我以为我会尝试安装pprint&#39;在命令行但是没有工作:
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
我认为Python 3.4.3应该带有pprint模块。我如何让它工作?似乎无法导入pprint,但所有其他模块都正常工作。我需要pprint模块来完成Automate The Boring Stuff with Python的一些练习。谢谢你看我的问题。
答案 0 :(得分:9)
您已将某个程序命名为pprint
。将您的程序重命名为pprint.py
以外的其他内容,并删除可能存在的任何pprint.pyc
文件。