Skip to content

Instantly share code, notes, and snippets.

@iacchus
Created January 7, 2024 09: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 iacchus/3f016d4c6c63241c3f4fe5b7d120505a to your computer and use it in GitHub Desktop.
Save iacchus/3f016d4c6c63241c3f4fe5b7d120505a to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import sys
# DOT = '.'
DOT = '·'
args = sys.argv[1:]
dotted = [DOT.join(arg).upper() for arg in args]
print(' '.join(dotted))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment