Skip to content

Instantly share code, notes, and snippets.

@erget
Created February 10, 2021 09:50
Show Gist options
  • Save erget/286c6e3b9dd7508efb82569f8470158a to your computer and use it in GitHub Desktop.
Save erget/286c6e3b9dd7508efb82569f8470158a to your computer and use it in GitHub Desktop.
Reverse text, TeneT style
#!/usr/bin/python
import sys
print(" ".join(sys.argv[1:])[::-1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment