You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import jsonwith open("json_file.json") as stud: student_list = json.load(stud)for student in student_list: print("Student name is {} and having total marks {} with {} " "status".format(student['student'], student['marks'], student[ 'status']))