无法导入 pprint
Can't import pprint
这里是编程新手。每当我在 Python IDLE 中尝试 'import 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
我想我会尝试在命令行中 '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
我认为 Python 3.4.3 应该带有 pprint 模块。我如何让它工作?似乎无法导入 pprint 但所有其他模块都工作正常。我需要 pprint 模块来完成 Automate The Boring Stuff with Python 中的一些练习。感谢您查看我的问题。
您已将程序命名为 pprint
。将您的程序重命名为 pprint.py
以外的名称,并删除可能存在的所有 pprint.pyc
文件。
这里是编程新手。每当我在 Python IDLE 中尝试 'import 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
我想我会尝试在命令行中 '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
我认为 Python 3.4.3 应该带有 pprint 模块。我如何让它工作?似乎无法导入 pprint 但所有其他模块都工作正常。我需要 pprint 模块来完成 Automate The Boring Stuff with Python 中的一些练习。感谢您查看我的问题。
您已将程序命名为 pprint
。将您的程序重命名为 pprint.py
以外的名称,并删除可能存在的所有 pprint.pyc
文件。