728x90
def solution(price):
answer = 0
if 100000 <= price < 300000:
answer = price * 0.95
elif 300000 <= price < 500000:
answer = price * 0.9
elif price >= 500000:
answer = price * 0.8
else:
answer = price
return int(answer)
728x90
'코딩테스트 > Python' 카테고리의 다른 글
프로그래머스 스쿨 - 자릿수 더하기(Python) (0) | 2023.09.12 |
---|---|
프로그래머스 스쿨 - 옹알이(1)(Python) - 복습 필요 (0) | 2023.09.11 |
프로그래머스 스쿨 - 양꼬치(Python) (0) | 2023.09.09 |
프로그래머스 스쿨 - 아이스 아메리카노(Python) (0) | 2023.09.08 |
프로그래머스 스쿨 - 숫자 비교하기(Python) (0) | 2023.09.07 |