Write a function build_csv_string(data) that takes in a list data. data will be a list of lists, where each sub list is of length 1, 2, or 3. ● Length 1 lists will contain a name (as a string). Length 2 lists will contain a name and an assignment title (as a string). ● Length 3 lists will contain a name, an assignment title, and a score (as a float or int). The function should return a valid csv string where each sublist is a record in the string. The header (first line) of the csv file should be 'name, assignment, grade\n'. Lists missing a grade value should use as the default, and missing assignment titles should be defaulted to 'N/A'

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question
In python >>> build_csv_string([["Sam", "Lab 01", 5.4]]) 'name,assignment,grade\nSam,Lab 01,5.4' >>> build_csv_string([["Sam", "Lab 01", 5.4], ["Zoe"]]) 'name,assignment,grade\nSam,Lab 01,5.4\nZoe,N/A,0' >>> build_csv_string([["Sam", "Lab 01", 5.4], ["Zoe"], ["Amanda", "Quiz 04", 100]]) 'name,assignment,grade\nSam,Lab 01,5.4\nZoe,N/A,0\nAmanda,Quiz 04,100'
Write a function build_csv_string(data) that takes
in a list data. data will be a list of lists, where each
sub list is of length 1, 2, or 3.
●
Length 1 lists will contain a name (as a string).
Length 2 lists will contain a name and an
assignment title (as a string).
● Length 3 lists will contain a name, an assignment
title, and a score (as a float or int).
The function should return a valid csv string where
each sublist is a record in the string. The header (first
line) of the csv file should be 'name, assignment,
grade\n'. Lists missing a grade value should use as
the default, and missing assignment titles should be
defaulted to 'N/A'
Transcribed Image Text:Write a function build_csv_string(data) that takes in a list data. data will be a list of lists, where each sub list is of length 1, 2, or 3. ● Length 1 lists will contain a name (as a string). Length 2 lists will contain a name and an assignment title (as a string). ● Length 3 lists will contain a name, an assignment title, and a score (as a float or int). The function should return a valid csv string where each sublist is a record in the string. The header (first line) of the csv file should be 'name, assignment, grade\n'. Lists missing a grade value should use as the default, and missing assignment titles should be defaulted to 'N/A'
Expert Solution
steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Linked List Representation
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning