Skip to content

Instantly share code, notes, and snippets.

@packetforger
Created September 27, 2013 10:48
Show Gist options
  • Save packetforger/6726865 to your computer and use it in GitHub Desktop.
Save packetforger/6726865 to your computer and use it in GitHub Desktop.
#!/usr/bin/python2
# really awful dict example
import sys
dict = {
"cat": "meow",
"dog": "woof",
"rat": "squeak"
}
x = dict[sys.argv[1]]
print x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment