
원단위 절사 코드
if payPricd > productPrice:
changeMoney = payPrice - productPrice
changeMoney = (changeMoney//10)*10
각 지폐와 동전의 필요 개수를 확인하는 코드(50000원 예시)
if changeMoney > money50000:
money50000cnt = changeMoney // money50000
changeMoney % money50000

세 과목의 대소비교 코드(최대, 최소 동일)
maxScore = korScore
maxSubject = '국어'
if engScore > maxScore:
maxScore = engScore
maxSubject = '영어'
if matScore > maxScore:
maxScore = matScore
maxSubject = '수학'

복리계산하는 코드:
