summaryrefslogtreecommitdiff
path: root/progs/a565.py
blob: 2322588000c0c4c24669f28d78bb664939441862 (plain)
1
2
3
4
5
6
def remove_even(str1):
 str2 = ''
 for i in range(1, len(str1) + 1):
    if(i % 2 != 0):
        str2 = str2 + str1[i - 1]
 return str2