Build a program to create two types of utility bills

Assignment Help Python Programming
Reference no: EM132355784

Question

Build a program to create two types of utility bills: water bill and electricity bill. Both types of bills have customer's name and address. They calculate charge differently.

(a) Design a Utility_bill class. This class has two protected instance variables: name and address. The __init__ method takes customer's name and address as two arguments and stores them in the instance variables. Add another protected instance variable total and initialized it to 0. Define two abstract methods calculate_charge and display_bill. These abstract methods have no real code. There is only one statement to raise a NotImplementedError exception

(b) Design a Water_bill class. This class is a derived class of the Utility_bill class. It has an additional protected instance variable to store number of gallons of water used. Define a calculate_charge method, which asks the user to enter number of gallons of water used and uses it to calculate total charge. Customers pay $0.005 per gallon for the first 6000 gallons, and $0.007 per gallon after the first 6000 gallons. Define a display_bill method to display customer's name, address, number of gallons of water used and total charge

(c) Build an Electricity_bill class. This class is a derived class of the Utility_bill class. It has an additional protected instance variable to store kilowatt hours used. Define a calculate_charge method, which asks the user to enter kilowatt hours used and uses it to calculate total charge. Customers pay $0.12 per kWh for the first 500 kWh, and $0.15 per kwh after the first 500 kWh. Define a display_bill method to display customer's name, address, number of kWh used and total charge

(d) In the main module, ask user to enter name and address. Ask the user to choose either water bill or electricity bill. Build an object and call its calculate_charge method to calculate total charge. Call the display_bill method to display the bill.

The following shows a sample test run. This user chooses water bill.

Enter name: John Doe

Enter address: 123 Happy Rd, Raleigh NC, 27603

Enter 1 for water bill, 2 for electricity bill: 1

How many gallons of water were used? 6002

Water Bill

Name: John Doe

Address: 123 Happy Rd, Raleigh NC, 27603

Gallons used: 6002.0

Please pay this amount: 30.014

The following shows another sample test run. This user chooses electricity bill.

Enter name: John Doe

Enter address: 123 Happy Rd, Raleigh NC, 27603

Enter 1 for water bill, 2 for electricity bill: 2

Enter kilowatt hours used: 502

Electricity Bill

Name: John Doe

Address: 123 Happy Rd, Raleigh NC, 27603

Kilowatt Hours used: 502.0

Please pay this amount: 60.3

Reference no: EM132355784

Questions Cloud

What is firm equity market beta : An identical firm that is entirely equity -financed has a market beta of 1.2. What is your firm's equity market beta?
What is bram market beta : The average annual return of the market portfolio is 12.5%, with a standard deviation of 4%. The covariance of the returns is 28.8%%. What is Bram's market beta
Write a function that returns the length and starting index : Longest sorted subsequence. Write a function longest_monot one ( ) that returns the length and starting index of the longest contiguous sorted.
What is the? firm debt? ratio : Dearborn Supplies has total sales of $ 207 ?million, assets of $ 97 ?million, a return on equity of 35 ?percent, and a net profit margin of 7.8 percent.
Build a program to create two types of utility bills : Define a calculate_charge method, which asks the user to enter kilowatt hours used and uses it to calculate total charge.
Company x largest shareholder is company y : Company X's largest shareholder is Company Y, which owns one out of every 8 outstanding shares of stock of X. Company X in turn owns 27% of Company Z
Write a function that output the position of minimum element : Position of minimum elemement. Write a function that outputs the position of the minimum element in an array of integers.
What is the difference between the retail or client market : What is the difference between the retail or client market and the wholesale or interbank market for foreign exchange?
Advantages and disadvantages of the gold standard : Describe the advantages and disadvantages of the gold standard.

Reviews

Write a Review

Python Programming Questions & Answers

  Write a python program to implement the diff command

Without using the system() function to call any bash commands, write a python program that will implement a simple version of the diff command.

  Write a program for checking a circle

Write a program for checking a circle program must either print "is a circle: YES" or "is a circle: NO", appropriately.

  Prepare a python program

Prepare a Python program which evaluates how many stuck numbers there are in a range of integers. The range will be input as two command-line arguments.

  Python atm program to enter account number

Write a simple Python ATM program. Ask user to enter their account number, and print their initail balance. (Just make one up). Ask them if they wish to make deposit or withdrawal.

  Python function to calculate two roots

Write a Python function main() to calculate two roots. You must input a,b and c from keyboard, and then print two roots. Suppose the discriminant D= b2-4ac is positive.

  Design program that asks user to enter amount in python

IN Python Design a program that asks the user to enter the amount that he or she has budget in a month. A loop should then prompt the user to enter his or her expenses for the month.

  Write python program which imports three dictionaries

Write a Python program called hours.py which imports three dictionaries, and uses the data in them to calculate how many hours each person has spent in the lab.

  Write python program to create factors of numbers

Write down a python program which takes two numbers and creates the factors of both numbers and displays the greatest common factor.

  Email spam filter

Analyze the emails and predict whether the mail is a spam or not a spam - Create a training file and copy the text of several mails and spams in to it And create a test set identical to the training set but with different examples.

  Improve the readability and structural design of the code

Improve the readability and structural design of the code by improving the function names, variables, and loops, as well as whitespace. Move functions close to related functions or blocks of code related to your organised code.

  Create a simple and responsive gui

Please use primarily PHP or Python to solve the exercise and create a simple and responsive GUI, using HTML, CSS and JavaScript.Do not use a database.

  The program is to print the time

The program is to print the time in seconds that the iterative version takes, the time in seconds that the recursive version takes, and the difference between the times.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd