我想用google colab在我的google驱动器中打开json文件。但是有一个错误。
from google.colab import drive
drive.mount('/content/drive')
os.chdir("/content/drive/My Drive/Colab Notebooks")
os.listdir()
['keras.ipynb',
'ItemData.json',
'DropData.json',
'DefaultUserData.json',
'MonsterData.json',
'DungenData.json',
'EquipData.json',
'UserData.json',
'game balancing.ipynb']
肯定有'itemData.json'文件 但是当我尝试打开...
with open('itemData.json') as json_file:
itemData = json.load(json_file)
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
<ipython-input-52-da912edd7528> in <module>()
----> 1 with open('itemData.json') as json_file:
2 itemData = json.load(json_file)
FileNotFoundError: [Errno 2] No such file or directory: 'itemData.json'
出什么问题了?
答案 0 :(得分:0)
尝试提出正确的案例。
'itemData.json'
必须
'ItemData.json'