Python - Structured Data Files
You have a CSV file with columns 'id', 'name', and 'score'. You want to read it using
csv.DictReader and create a dictionary mapping each 'id' to the 'score' as an integer. Which code snippet correctly does this?