You are viewing a single comment's thread. Return to all comments →
My code Python 3
n = int(input()) for _ in range(n): s = input() print(s[::2] + ' ' + s[1::2])
Day 6: Let's Review
You are viewing a single comment's thread. Return to all comments →
My code Python 3