Ao rodar o código abaixo:
import json
with open('dados.json', 'r') as f:
dados = json.load(f)
Ocorreu o seguinte erro:
FileNotFoundError Traceback (most recent call last)
<ipython-input-11-a4b7e3604baf> in <cell line: 3>()
1 import json
2
----> 3 with open('dados.json', 'r') as f:
4 dados = json.load(f)
FileNotFoundError: [Errno 2] No such file or directory: 'dados.json'