You are viewing a single comment's thread. Return to all comments →
for _ in range(int(input())): s=input() even=s[::2] odd=s[1::2] print(even,odd)
Seems like cookies are disabled on this browser, please enable them to open this website
Day 6: Let's Review
You are viewing a single comment's thread. Return to all comments →
Python code