본문 바로가기
코테 준비/프로그래머스

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

by 귤이두번 2022. 2. 4.

 

def solution(seoul):
    location = seoul.index('Kim')	# Kim 위치 찾기

    answer = "김서방은 " + str(location) + "에 있다"
    return answer

 

index()

- 리스트에서 특정 요소의 인덱스를 찾고 싶을 때 사용

- indext('Kim')을 사용하면 'Kim'이 있는 위치를 찾아줌

댓글