Susy wants to store the list of planets and their radii in a nice readable format within Python. She has decided to go with using a Named tuple. Help Susy parse the CSV data of planets from csv_data
and create a named tuple of Planet with it. Add this tuple to planet_list
and print it.
The attributes of the Planet tuple will be name
and radius
.