본문 바로가기
Beakjoon&프로그래머스/파이썬

[프로그래머스/파이썬] 서울에서 김서방 찾기

by 현장 2022. 1. 1.

-코드

def solution(seoul):
    for i in range(len(seoul)):
        if seoul[i] == 'Kim':
            return f'김서방은 {i}에 있다'