這裏是我的代碼:python:在不同的目錄中打開一個json文件?
import json
with open("json.items") as json_file:
json_data = json.load(json_file)
當我移動JSON文件在同一目錄,它工作正常。但是,我試圖從一個不同的目錄中獲取json文件。我會怎麼做?這是我已經嘗試過,它不工作:
with open("/lowerfolder/json.items") as json_file:
任何幫助嗎?由於
根據你的平臺,用'/' MEA ns的根絕對路徑 – mhlester
含義相對路徑應該是open(「lowerfolder/json.items」)''不帶'/' – mhlester
@mhlester說的或者open('./folder/json.items' )',或使用完整的絕對路徑(例如'開( '/家庭/ strikepricer /文件/ lowerfolder/json.items')')。 – senshin