Python · Serialization: pickle, JSON & CSV
What does this print? ``` import csv, io rows = csv.reader(io.StringIO("3,4\n")) row = next(rows) print(row[0] + row[1]) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
