IT/알고리즘 문제

프로그래머스 - 서울에서 김서방 찾기

금마s 2020. 11. 12. 16:54

# python 3

def solution(seoul):
    answer = ''
    index = seoul.index('Kim')
    answer = "김서방은 " + str(index) + "에 있다"
    return answer

 

 

 

 

 

 

728x90