Skip to content

Instantly share code, notes, and snippets.

@jProgr
Created August 11, 2016 21:29
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 jProgr/bd585901af3425737a7e1d10bea199a4 to your computer and use it in GitHub Desktop.
Save jProgr/bd585901af3425737a7e1d10bea199a4 to your computer and use it in GitHub Desktop.
String of integers separated by spaces to a list of int
x='4 51 1 3'
a=list(map(int,x.split(' ')))
print(a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment