TORONTO KIDS COMPUTER CLUB | PMCA Sunday 14:00 Python Homework 20.08.09.
18118
post-template-default,single,single-post,postid-18118,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

PMCA Sunday 14:00 Python Homework 20.08.09.

11 Aug PMCA Sunday 14:00 Python Homework 20.08.09.

You can do Question 1~ 3 in Python IDLE:

Question 1.

Use float() to create a number from a string like ‘12.34’. Make sure the result is really a number!


Question 2.

Try using int() to create an integer from a decimal number like 56.78. Did the answer get rounded up or down?


Question 3.

Try using int() to create an integer from a string. Make sure the result is really an integer!


You could create python file and Write program for the following questions, detailed instructions of how to create python file is at the end of this page:

Question 4.

Write a program that asks for your first name, then asks for your last name, and then prints a message with your first and last names in it.

Hint:
Use input() to ask question and get answer, for example:

firstName = input("What is your first name?")

The string answer as value will be assigned to variable firstName.


Question 5.

Write a program that asks for the dimensions (length and width) of a rectangular room, and then calculates and displays the total amount(area) of carpet needed to cover the room.

Hint:
Use input() to ask question and get answer, however, you can only get string data type of answer. In order to get decimal number as dimensions, you need to use float(input(…..)) which will convert from string answer into a decimal number.


Question 6.

Write a program that helps the user add up her change. The program should ask:

  • “How many quarters?”
  • “How many dimes?”
  •  “How many nickels?”

Then it should give the total value of the change

No Comments

Sorry, the comment form is closed at this time.