Skip to content

Instantly share code, notes, and snippets.

@smithjessk
Last active March 22, 2016 17:55
Show Gist options
  • Save smithjessk/9680019c2709f6738b8e to your computer and use it in GitHub Desktop.
Save smithjessk/9680019c2709f6738b8e to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
import sys
lines = sys.stdin.readlines()
for line in lines:
chars = list(line)
output = ""
for char in chars:
output += char
output += " "
print(output + "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment