I tried with the given command in the video lecture but iam getting this error, ive also created the file name as practice.json in the same folder where iam executing the code please help me out

Hello @yashsonawane18_29d0f9375c726519,
You have not specified what file is the name of the read file which you are passing to json.read() function so it will like like
with open(“practice.json”,“r”) as file:
d=json.load(file)
print(d)**

with open(“practice.json”,“r”) as file:
d=json.load(file)
print(d)

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.