import json
with open(r"D://Json//students.json",“r”) as file:
d=json.loads(file)
when i do this, it gives me an error saying-
raise TypeError(f'the JSON object must be str, bytes or bytearray, '
TypeError: the JSON object must be str, bytes or bytearray, not TextIOWrapper