상세 컨텐츠

본문 제목

[코딩테스트 입문] 서울에서 김서방 찾기(Python3)

Coding/Programmers

by Soo_buglosschestnut 2023. 1. 3. 12:18

본문

[코딩테스트 입문] 서울에서 김서방 찾기(Python3)


https://school.programmers.co.kr/learn/courses/30/lessons/12919?language=python3 

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

 

처음에 이렇게 했었는데 굳이 index를 쓰면 if를 쓰지않아도 되는데..

def solution(seoul):
    if 'Kim' in seoul:
        return '김서방은 %d에 있다' %(seoul.index('Kim'))

list.index() : list에서 찾고자 하는 값의 index값을 반환

'~~~~~~~~~ %d %s' %(3,'Kim) 이런식으로 string return

'~~~~~~~ {} ~~~~ {}'.format(3, 'Kim') 두개 다 똑같은 방법

def solution(seoul):
        return '김서방은 %d에 있다' %(seoul.index('Kim'))

관련글 더보기