Skip to content

Instantly share code, notes, and snippets.

@raeq
Last active July 23, 2020 20:57
Show Gist options
  • Save raeq/93e71c95d1d53c9e92dae3fb1690f6ea to your computer and use it in GitHub Desktop.
Save raeq/93e71c95d1d53c9e92dae3fb1690f6ea to your computer and use it in GitHub Desktop.
List from csv line
def from_csv_line(line: str = "") -> list:
return line.split(",")
assert from_csv_line("a,b,c") == ["a", "b", "c"]
@raeq
Copy link
Author

raeq commented Jul 23, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment