야마타노오로치

일본어학과 학생들의 Python 도전기

모두를 위한 Python 특화과정/20171047 김동훈

Programming for Everybody (Getting Started with Python)-6

프로비우스윽 2022. 7. 19. 18:38
def computepay(xh, xr):
    if xh > 40:
        xh = 40 + (xh-40) * 1.5 
    return xh*xr

xh = float(input("Enter Hours:"))
xr = float(input("Enter Rate:"))


p = computepay(xh, xr)
print("Pay", p)

결과