Skip to content

Instantly share code, notes, and snippets.

@hit9
Created March 13, 2013 02:12
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 hit9/5148856 to your computer and use it in GitHub Desktop.
Save hit9/5148856 to your computer and use it in GitHub Desktop.
字符串转数字. eg: "3456" => 3456
reduce(lambda x,y:10*x+y,map(lambda x:ord(x)-48,a))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment