Skip to main content

Practice ยท 1 of 1

CSV Round-Trip

Implement to_csv(name, category, amount) producing "name,category,amount" (amount with one decimal), and from_csv(line) returning the amount (0.0 on any malformed line โ€” no name, no category, unparseable amount).

Difficulty: beginner

Back to lesson: Practice: Capstone Practice: Milestone 3 Warm-up