ExercisesΒΆ

  1. Evaluate the following numerical expressions in your head, then use the active code window to check your results:

    1. 5 ** 2
    2. 9 * 5
    3. 15 / 12
    4. 12 / 15
    5. 15 // 12
    6. 12 // 15
    7. 5 % 2
    8. 9 % 5
    9. 15 % 12
    10. 12 % 15
    11. 6 % 6
    12. 0 % 7

    
    
    

    (ch02_ex1)

    1. 5 ** 2  = 25
    2. 9 * 5 = 45
    3. 15 / 12 = 1.25
    4. 12 / 15 = 0.8
    5. 15 // 12 = 1
    6. 12 // 15 = 0
    7. 5 % 2 = 1
    8. 9 % 5 = 4
    9. 15 % 12 = 3
    10. 12 % 15 = 12
    11. 6 % 6 = 0
    12. 0 % 7 = 0
  2. Many people keep time using a 24 hour clock (11 is 11am and 23 is 11pm, 0 is midnight). If it is currently 13 and you set your alarm to go off in 50 hours, it will be 15 (3pm). Write a Python program to solve the general version of the above problem. Ask the user for the time now (in hours), and then ask for the number of hours to wait for the alarm. Your program should output what the time will be on the clock when the alarm goes off.


    
    
    

    (q3_exer)


    
    
    

    (q3_answer)

  3. The formula for computing the final amount if one is earning compound interest is given on Wikipedia as

    formula for compound interest

    Write a Python program that assigns the principal amount of 10000 to variable P, assign to n the value 12, and assign to r the interest rate of 8% (0.08). Then have the program prompt the user for the number of years, t, that the money will be compounded for. Calculate and print the final amount after t years.


    
    
    

    (q7_exer)


    
    
    

    (q7_answer)

  4. Write a program that will compute the area of a circle. Prompt the user to enter the radius and print a nice message back to the user with the answer.


    
    
    

    (q8_exer)

  5. Write a program that will compute the area of a rectangle. Prompt the user to enter the width and height of the rectangle. Print a nice message with the answer.


    
    
    

    (q9_exer)


    
    
    

    (q9_answer)

  6. Write a program that will convert degrees celsius to degrees fahrenheit.


    
    
    

    (q11_exer)


    
    
    

    (q11_answer)

  7. Write a program that will convert degrees fahrenheit to degrees celsius.


    
    
    

    (q12_exer)

Next Section - Hello Little Turtles!