TORONTO KIDS COMPUTER CLUB | Sunday 16:00 Python Homework 05.05.
16259
post-template-default,single,single-post,postid-16259,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

Sunday 16:00 Python Homework 05.05.

07 May Sunday 16:00 Python Homework 05.05.

 

Question 1

Write a program to solve the following question: Three people ate dinner at a restaurant and want to split the bill. The total is $35.27, and they want to leave a 15 percent tip. How much should each person pay?

Hint:

You can create several variables for each number in this question, for example:

people = 3
total = 35.27

then you need to figure out the the formula to calculate how much each person has to pay, you can also create a variable for it.


Question 2

Write a program to solve the following question: Calculate the area and perimeter of a rectangular room, 12.5 meters by 16.7 meters.


Question 3

Write a program to convert temperatures from Fahrenheit to Celsius. The formula for that is:

C = 5 / 9 * (F – 32)


Some of the Class Notes:

No Comments

Sorry, the comment form is closed at this time.