You are viewing a single comment's thread. Return to all comments →
T = int(input()) # Number of test cases for _ in range(T): s = input() even = s[0::2] odd = s[1::2] print(even,odd,sep=" ")
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 →