Contact: aviboots(AT)netvision.net.il
41,688 questions
54,358 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 '''