Skip to content

Instantly share code, notes, and snippets.

@santosh
Created March 13, 2013 11:41
Show Gist options
  • Save santosh/5151325 to your computer and use it in GitHub Desktop.
Save santosh/5151325 to your computer and use it in GitHub Desktop.
Erase conflict between input() and raw_input().
try:
input = raw_input
except NameError:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment