Created
January 7, 2024 09:33
-
-
Save iacchus/3f016d4c6c63241c3f4fe5b7d120505a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/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