[Programmers] - 서울에서 김서방 찾기 (Level 1)


연습문제
LEVEL : 1
문제링크

seoul = ['Jane', 'Kim']
def solution(seoul):

    return '김서방은 %d에 있다' % seoul.index('Kim')
solution(seoul)
'김서방은 1에 있다'

Comments