[Programmers] 서울에서 김서방 찾기
Python
def solution(seoul):
for i in range(len(seoul)):
if seoul[i] == 'Kim':
return f'김서방은 {i}에 있다'
def solution(seoul):
for i in range(len(seoul)):
if seoul[i] == 'Kim':
return f'김서방은 {i}에 있다'
댓글남기기