programmers.co.kr/learn/courses/30/lessons/12919
My answer:
def solution(seoul):
answer=""
for i, name in enumerate(seoul):
if(name=="Kim"):
answer="김서방은 "+str(i)+"에 있다"
break
return answer
reference answer:
def findKim(seoul):
return "김서방은 {}에 있다".format(seoul.index('Kim'))
- list.index('찾고싶은 요소'): 요소의 index반환
'Computer Science > 알고리즘 문제풀이' 카테고리의 다른 글
[프로그래머스][python]12943. 콜라츠 추측 (0) | 2021.01.08 |
---|---|
[프로그래머스][python]12915. 문자열 내 마음대로 정렬하기 (0) | 2021.01.08 |
[프로그래머스][python] 12950. 행렬의 덧셈 (0) | 2021.01.07 |
[프로그래머스][python] 12944. 평균 구하기 (0) | 2021.01.07 |
[프로그래머스][python] 12937. 짝수와 홀수 (0) | 2021.01.05 |