You can put r before filename to ensure path is read correctly:
import json with open(r"test11.json","r") as file: data = json.load(file) print(data)