Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created September 13, 2014 08:55
Show Gist options
  • Save shigemk2/a5306e39390b0949b081 to your computer and use it in GitHub Desktop.
Save shigemk2/a5306e39390b0949b081 to your computer and use it in GitHub Desktop.
def convstr(v):
return map(lambda x: ord(x), v)
def mapstr(v):
return map(lambda x: x, "MZ")
print convstr("MZ")
print mapstr("MZ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment