Sale!

COMP 3022 LAB 5 SOLVED

$30.00 $18.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (4 votes)

Instructions
Read in file input.csv and generate a cleanly formatted table in output.txt.
See the samples below.

### input.csv
“`
name,ID,salary,years experience
foo,1,13890,12
bar,2,2342,3
baz,3,99999,24
“`

### output.txt
“`
Name | ID | Salary | Years experience
—–+—-+——–+—————–
Foo | 1 | 13890 | 12
Bar | 2 | 2342 | 3
Baz | 3 | 99999 | 24
“`