본문 바로가기
Python/프로그래머스

서울에서 김서방 찾기

by sophia02 2022. 7. 29.
def solution(seoul):
    for i in range(len(seoul)):
        if seoul[i] == "Kim":
            answer = "김서방은 "+str(i)+"에 있다"
    return answer