Skip to content

KOBIC 차세대 생명정보 교육 파이썬기초편 9강 #
Find similar titles

연습문제 답 #

1 #

def string_reverse(str1):

    rstr1 = ''
    index = len(str1)
    while index > 0:
        rstr1 += str1[ index - 1 ]
        index = index - 1
    return rstr1
print(string_reverse('1234abcd'))

2 #

list(map(lambda w: len(w), 'It is raining cats and dogs'.split()))
0.0.1_20210630_7_v33