본문 바로가기

Algorithm/Implementation

(Python3) - 프로그래머스(PCCP_기출문제) : 4번 병과분류

반응형

https://school.programmers.co.kr/learn/courses/30/lessons/340204#

 

프로그래머스

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

programmers.co.kr

간단 분기 처리 문제였습니다.

📕 풀이방법

📔 정답 출력 | 반환

분기에 따라 맞는 병과를 출력해줍니다.


📕 Code

📔 Python3

code = input()
last_four_words = code[-4:]

if last_four_words == "_eye":
    print("Ophthalmologyc")
elif last_four_words == "head":
    print("Neurosurgery")
elif last_four_words == "infl":
    print("Orthopedics")
elif last_four_words == "skin":    
    print("Dermatology")
else:    
    print("direct recommendation")

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.