Contact: aviboots(AT)netvision.net.il
39,987 questions
51,931 answers
573 users
def remove_at_odd_indexes(str): result = "" for i in range(len(str)): if i % 2 == 0: result = result + str[i] return result print(remove_at_odd_indexes('python pro')) ''' run: pto r '''