Skip to content

Instantly share code, notes, and snippets.

@eyaltrabelsi
Created July 5, 2019 19:36
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 eyaltrabelsi/71cf7e76176c0ee9b9d8dcc6accd8fa5 to your computer and use it in GitHub Desktop.
Save eyaltrabelsi/71cf7e76176c0ee9b9d8dcc6accd8fa5 to your computer and use it in GitHub Desktop.
Python trick for splitting string to list
>>> s = "a,b,c"
>>> s.split(",")
["a", "b", "c"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment