>백엔드 개발 >파이썬 튜토리얼 >EB 청구서 계산기 프로그램 작성

EB 청구서 계산기 프로그램 작성

DDD
DDD원래의
2024-11-19 00:18:02745검색

Write a program to EB bill calculator

전기요금 계산기:

전기 요금(EB) 계산기는 소비된 단위와 적용 가능한 관세율을 기준으로 전기 소비 비용을 추정하는 데 사용되는 도구입니다.

공식:
전기요금 = 전력사용량(kWh) x 단위당 관세율

예:

# Function to calculate electricity bill based on unit consumption
def eb(unit):
    # First 100 units are free
    if unit <= 100:
        cost = 0.00
    # For 101–200 units, charge ₹2.50 per unit above 100
    elif unit <= 200:
        cost = (unit - 100) * 2.50
    # For 201–300 units, add ₹3.00 per unit above 200
    elif unit <= 300:
        cost = 100 * 2.5 + (unit - 200) * 3.00
    # For 301–400 units, add ₹4.50 per unit above 300
    elif unit <= 400:
        cost = 100 * 2.5 + 100 * 3 + (unit - 300) * 4.50
    # For units above 400, add ₹6.00 per unit above 400
    else:
        cost = 100 * 2.5 + 100 * 3 + 100 * 4.5 + (unit - 400) * 6.00
    # Return the total calculated cost
    return cost

# input the total units consumed
unit = int(input("Enter the unit: "))

# Call the `eb` function to calculate the electricity bill
eb_bill = eb(unit)

# Display the calculated electricity bill amount
print("Electricity bill amount:", eb_bill)

출력:

Enter the unit:345
Electricity bill amount: 752.5

위 내용은 EB 청구서 계산기 프로그램 작성의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.