Created
March 14, 2017 18:55
-
-
Save sathishbabu96/39f52a95e5c7df374f22e662337d43ae 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
| a=input("Enter a long string ").split(" ") | |
| a=a[::-1] | |
| a=" ".join(a) | |
| print(a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment