Last active
March 19, 2017 03:21
-
-
Save Ravenslofty/283a6cffba7b7e10ef62157563d11277 to your computer and use it in GitHub Desktop.
What is this "readability" you speak of?
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
from sys import* | |
o=ord | |
g=lambda s:print(''.join(map(lambda c:((c,chr(o(c)+65248))[o(c)<127]," ")[c==" "],s))) | |
if len(argv)>1:g(' '.join(argv[1:])) | |
else: | |
while 1:g(input()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment