英文:
why my "import json" is not working in python
问题
我正在导入 Json 以获取数据,但此命令不起作用
我已经尝试了不同的方法,比如创建虚拟环境,但还是不起作用
帮我解决这个问题
为什么一直显示这个错误?
英文:
I am importing Json to fetch data, but this command is not working
I already did different things like creating virtual environment, but it's not working
```type here
[enter image description here](https://i.stack.imgur.com/Rz5L1.png)
HELP ME WITH THIS
Why is this keep showing me this error
</details>
# 答案1
**得分**: 1
你的源文件名为 `json.py`,这会覆盖内置的 `json` 模块。基本上,你的模块尝试重新导入自己,这在Python中是不允许的。要解决这个问题,只需将你的文件命名为其他名称。
<details>
<summary>英文:</summary>
Your source file is named `json.py`, which shadows the built-in `json` module. Essentially, your module tries to reimport itself, which is not allowed in Python. To fix it, just name your file something else
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论