import json
jsonStr = '{"age": 18}'
tmp = json.loads(jsonStr)
print(tmp)
python json.py
AttributeError: partially initialized module 'json' has no attribute 'loads' (most likely due to a circular import)
这么简单的一段代码竟然出现了错误,而且还是提醒重复导入。
经过查阅资料,其实就类似java的classpath的设置
先找当前目录,然后又导入了json库,所以重复
明白了这点,解决方法就出来了,重命名该文件。