Task
Given a string, , of length that is indexed from to , print its even-indexed and odd-indexed characters as space-separated strings on a single line (see the Sample below for more detail).
Code:
t = int(input())
for i in range(t):
s = str(input())
print (s[::2], s[1::2])