I would like the output to be table. Without the curly brackets and double quotes. Can I get some help with this? I'm using python 3.7.5
students = [ 
  { "grade": 5,
    "firstname": "Brendon", 
    "lastname": "Urie", 
    "gender": "M" 
    },
  { 
    "grade": 7,
    "firstname": "Freddy",
    "lastname": "Mercury",
    "gender": "M" 
  },
  { 
    "grade": 12,
    "firstname": "Tessa",
    "lastname": "Thompson"
  }
]
output("list", students, None)
 
     
     
     
    