Skip to content

Instantly share code, notes, and snippets.

@Ravenslofty
Last active March 19, 2017 03:21
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Ravenslofty/283a6cffba7b7e10ef62157563d11277 to your computer and use it in GitHub Desktop.
Save Ravenslofty/283a6cffba7b7e10ef62157563d11277 to your computer and use it in GitHub Desktop.
What is this "readability" you speak of?
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