Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created November 23, 2014 14:02
Show Gist options
  • Save z-------------/d0e358fef8aa67900012 to your computer and use it in GitHub Desktop.
Save z-------------/d0e358fef8aa67900012 to your computer and use it in GitHub Desktop.
print "Welcome"
name = raw_input("Tell me your name, child\n")
word = raw_input("Enter a random word pl0x\n")
if len(word) > 0 and word.isalpha():
print "You said '%(word)s', %(name)s" % {"word": word, "name": name}
else:
print "ur an fgt"
@z-------------
Copy link
Author

git clone it, then run it from the command line with python timo-script.py

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment