Program has to be on python for beginners

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Program has to be on python for beginners 

 

Expert Solution
Step 1

Program approach:

  • Declare basic price.
  • Declare basic price for Frederick.
  • Declare senior citizens discount.
  • Declare price for children.
  • Request county name and from user.
  • Use if statement for age validation.
  • Use if statement for age is less than 6.
  • Use if statement to compare county name with FREDERICK.
  • Compute price for senior citizens by using if statement.
  • Print fair price.
Step 2

The following program is written in python 3.

Program:

#declare basic price

basicPrice=40

#declare basic price for frederick

basicPriceFrederick=35

#declare senior citizens discount

seniorCitizensDiscount=0.5

#declare price for children

childrenPrice=0

#request county name from user

countyName=input('Enter county name: ')

#request age from user

age=int(input('Enter age: '))

#if statement age validation

if age<0 or age>110:

    #print message

    print("The inputted age is a not valid age.")

#else statement

else:

    #if statement for age is less than 6

    if age<6:

        #set price to child

        price=childrenPrice

    #else statement

    else:

        #if statement to compare county name with FREDERICK

        if countyName.upper()=='FREDERICK':

            #set price to basic price for FREDERICK

            base=basicPriceFrederick

        #else statement

        else:

            #assign basic price in base

            base=basicPrice

        #if statement for senior citizens

        if age>=65:

            #compute price for senior citizens

            price=base*seniorCitizensDiscount

        #else statement

        else:

            #assign base into price

            price=base

    #print fair price

    print('Your fair price is ${:.2f}'.format(price))

steps

Step by step

Solved in 3 steps with 12 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY