We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
the solution
T= int(input())
for i in range(T):
s=input()
even_characters = [] # For storing even characters
odd_characters = [] # For storing odd characters
for j in range(len(s)):
if j % 2 == 0: # check if the index is even
even_characters.append(s[j])
else:
odd_characters.append(s[j])
even_characters=''.join(even_characters)
odd_characters=''.join(odd_characters)
print(even_characters, odd_characters)
Cookie support is required to access HackerRank
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 →
the solution T= int(input()) for i in range(T): s=input() even_characters = [] # For storing even characters odd_characters = [] # For storing odd characters