Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

An Internet service provider offers four subscription packages to its customers, plus a discount for nonprofit organizations: Package A: 10 hours of access for $12.95

An Internet service provider offers four subscription packages to its customers, plus a discount for nonprofit organizations:

Package A: 10 hours of access for $12.95 per month. Additional hours are $4.00 per hour.

Package B: 20 hours of access for $14.95 per month. Additional hours are $2.00 per hour.

Package C: 30 hours of access for $20 per month. Additional hours are $1.00 per hour.

Package D: Unlimited access for $35.95 per month.

A nonprofit organizations will get 20% discount on all packages.

Create a Python program that asks user to enter the following information:

a. The Package customer selects

b. The hours used

c. Is the customer a non-profit organization

And compute the monthly charge accordingly.

image text in transcribed

Loco package.py* 1def main(): 2 # User input the requied information 3 package=input("Enter the Package :") 4 hour = int(input("Enter hours used : ")) 5 flag = input("Is the customer a non-profit organization : ") 6 pack = package 7 if pack=='A': if hour pythor package.py Enter the Package : B Traceback (most recent call last): File "package.py", line 33, in main() File "package.py", line 3, in main pack = input ("Enter the Package : ") File "", line 1, in NameError: name 'B' is not defined user@mimir: -/isys350_spring_2021/homework_3a > pythor package.py Enter the Package : B Traceback (most recent call last): File "package.py", line 34, in main() File "package.py", line 3, in main package=input("Enter the Package : ") File "", line 1, in NameError: name 'B' is not defined user@mimir: -/isys350_spring_2021/homework_3a > I 16 26 name

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Analysis Using SQL And Excel

Authors: Gordon S Linoff

2nd Edition

111902143X, 9781119021438

More Books

Students also viewed these Databases questions