Skip to content

Instantly share code, notes, and snippets.

@louisswarren
Created March 21, 2016 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louisswarren/a55bffdcf3c93e1b73e1 to your computer and use it in GitHub Desktop.
Save louisswarren/a55bffdcf3c93e1b73e1 to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
from sys import argv
text = ''.join(argv[1:]).upper().replace(' ', '')
print(' '.join(text))
print('\n'.join(text[1:]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment