Skip to content

Instantly share code, notes, and snippets.

@nackjicholson
Created November 12, 2018 00:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nackjicholson/acdd07215690dd093b45f838853a080c to your computer and use it in GitHub Desktop.
Save nackjicholson/acdd07215690dd093b45f838853a080c to your computer and use it in GitHub Desktop.
single line string parse a csv
>>> import csv
>>> s = '"Yes, this line",can be, parsed as csv'
>>> list(csv.reader([s]))[0]
['Yes, this line', 'can be', ' parsed as csv']
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment