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


연습문제 - 서울에서 김서방 찾기

사용 언어 : Python3

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


© 2020. by bs-derek