Last active
November 14, 2015 06:36
-
-
Save LandonPowell/de0f97322f99a26998cf to your computer and use it in GitHub Desktop.
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
x = raw_input("> ") | |
print ' '.join(x) | |
for i in range(1, len(x)-1):print x[i] + (len(x) * 2 - 3) * ' ' + x[len(x)-i-1] | |
print ' '.join(x[::-1]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment