Created
August 8, 2014 07:10
-
-
Save jovianlin/60d38b72ec380127ccb3 to your computer and use it in GitHub Desktop.
random python code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while True: | |
user_input = raw_input("Type something: ") | |
print ' '.join(["#" + w.lower().capitalize() for w in user_input.split()]) + '\n' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment