Write a python script to calculate the cost of single pizza

Assignment Help Python Programming
Reference no: EM133091473

Conditionals, Lists and Loops

Introduction
In each lab you'll work through a series of exercises that help you to understand and be able to apply and use the knowledge and techniques learnt in the associated weeks' lecture.

Remember - you aren't expected to do everything from memory - sometimes it's best to do a little research / reading / re-reading of materials and come up with a great, and correct, answer rather than just 'taking a stab' at the question and hoping you're right!

Exercises
1. Below you'll find some source code that uses all the main conditional operators. Create a new Python script called 01-ConditionalOperators.py and copy and paste the code below into it then run the program via IDLE.

Once you've got it working, try changing the values of num1 and num2 specified at the start of the program and re-run the program again. Then, modify the program so that it asks the user for the two numbers before performing its comparisons.

2. Conditional AND

Write a small python script that asks the user:
a. If they have a drivers license (Y/N), and
b. If they have a car (Y/N)
Use an and statement to print out the message "Let's go for a spin!" if they answered yes to BOTH questions, otherwise display a message saying "Walking it is!".

3. Conditional OR

Write a small Python script that asks the user "Do you want to go out for lunch?". If the user enters "Y" OR "y" (i.e. uppercase or lowercase letter y) then print out the message "Cool! You're paying!", otherwise display the message "Bah! Beans on toast again!".

Once you've done the above, try using the capitalize() function on the input - this function will capitalise the very first word of any string - so by using this you don't actually need the OR comparison to check against both 'Y' or 'y' - because the lowercase will be capitalised into 'Y' if it isn't already.

Going further, you could compare using if (answer[0:1].capitalize() == 'Y'): - in this case the user could type in "yes" or "Yes" as well, and we'd only take the first character and capitalize it, so more potential answers would work as an affirmative response.

4. Printing Ranges

Write a small Python script that print out the following ranges of values:
• 0 to 10 inclusive (i.e. including the final 10 value),
• 50 to 74 with a step-size of 1

• 50 to 90 with a step size of 5 (make sure the final 90 value is included!),
• 30 to 0 inclusive with a step-size of -6 (minus six).
Rather than writing a loop for each of these, you can wrap the range call inside a list call to display the list generated by the range statement i.e. print(list(range(5)))

5. Loops

Write a small Python script that asks the user for a name, and then prints the name 10 times.
Then, add a second section that does the same thing but using a while loop and a countervariable. To do this, create a value initialised to zero, set your while loop to keep running while the counter is less than 5.

Finally, add a third section that does the same thing again but this time uses an infinite while loop (i.e. while True) - where your code keeps track of how many times the loop has executed similar to the above, but this time when the loop has run the desired number of times you call the break statement to terminate the loop.

6. Challenge Task - Pizza Cost Calculator
Write a Python script to calculate the cost of a single pizza order, where the order may contain one or more pizzas.
Ask the user the size of the pizza they want - small pizzas cost $10, medium pizzas cost $12 and large pizzas cost $14.
Ask the user how many toppings they want (valid answers are between 1 and 6) - the first three toppings are free, any toppings above that cost an additional dollar per topping.
Once you have those details, ask the user if they'd like to add another pizza to the order - if so you go again from asking the size.
Once the user says they don't want to add any more pizzas to the order then display the total amount due.

Reference no: EM133091473

Questions Cloud

Create the journal entries for these three dates : On July 7, it returned $200 worth of merchandise. On July 8, it paid the full amount due. Please create the journal entries for these three dates
How school leaders can inform communities : What are some factors related to school safety that should be considered in a school/district budget? Include a brief discussion on how school leaders can infor
Creating a report using microsoft word : David, a software engineer, was creating a report using Microsoft WorD. After completing 15 pages in the file, he noticed that whenever he copied something usin
What is the per-unit value of ending inventory on august : August 29, 20 units were sold. August 31, 14 units were purchased at $16 per unit. What is the per-unit value of ending inventory on August 31
Write a python script to calculate the cost of single pizza : Write a Python script to calculate the cost of a single pizza order, where the order may contain one or more pizzas
What amount should be reported as cash : If a balance sheet were prepared for Stone Systems on July 31, 20Y5, what amount should be reported as cash
Who is an organizational leader : Who is an organizational leader? What are the qualities every organizational leader should have?
Social media impacted maslow hierarchy : How has Social Media impacted Maslow's (secondary) Hierarchy of needs? How has the hierarchy evolved post COVID-19 pandemic?
Explain the sources of power : Identify and explain the significance the following term (or phrase): Sources of power

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