P ython p rogramming e xercises


partial program as a starting place. Copy the following code from



Yüklə 1,51 Mb.
Pdf görüntüsü
səhifə13/124
tarix14.05.2023
ölçüsü1,51 Mb.
#113537
1   ...   9   10   11   12   13   14   15   16   ...   124
PythonProgrammingExercisesGentlyExplained


partial program as a starting place. Copy the following code from https://invpy.com/oddeven-template.py 
and paste it into your code editor. Replace the underscores with code to make a working program: 
def isOdd(number): 
# Return whether number mod 2 is 1: 
return ____ % 2 == ____ 
def isEven(number): 
# Return whether number mod 2 is 0: 
return ____ % 2 == ____ 
The complete solution for this exercise is given in Appendix A and https://invpy.com/oddeven.py
You can view each step of this program as it runs under a debugger at https://invpy.com/oddeven-debug/
Further Reading 
There are several uses of the % modulo operator. You can learn more about them in the tutorial 
―Python Modulo in Practice: How to Use the % Operator‖ at https://realpython.com/python-modulo-
operator/.


13 
E X E R C I S E # 4 : A R E A & V O L U M E
area(10, 4)
→ 
40 
perimeter(10, 4)
→ 
28 
volume(10, 4, 5)
→ 
200 
surfaceArea(10, 4, 5)
→ 
220 
Area, perimeter, volume, and surface area are straightforward calculations. This exercise is similar 
to Exercise #2, ―Temperature Conversion‖ and Exercise #3, ―Odd & Even.‖ Each function in this 
exercise is a simple calculation and return statement. However, area and volume are slightly more 
complicated because they involve multiple parameters. This exercise continues to challenge you to 
translate mathematical formulas into Python code. 
Exercise Description 
You will write four functions for this exercise. The functions area() and perimeter() have 
length
and width parameters and the functions volume() and surfaceArea() have length, 
width
, and height parameters. These functions return the area, perimeter, volume, and surface 
area, respectively. 
The formulas for calculating area, perimeter, volume, and surface area are based on the length 
(L), width (W), and height (H) of the shape: 

area = L × W 

perimeter = L + W + L + W 

volume = L × W × H 

surface area = (L × W × 2) + (L × H × 2) + (W × H × 2) 
Area is a two-dimensional measurement from multiplying length and width. Perimeter is the sum 
of all of the four one-dimensional lines around the rectangle. Volume is a three-dimensional 
measurement from multiplying length, width, and height. Surface area is the sum of all six of the two-
dimensional areas around the cube. Each of these areas comes from multiplying two of the three 
length, width, or height dimensions. 
You can see what these formulas measure in Figure 4-1. 


Python Programming Exercises, Gently Explained 
14 
Figure 4-1: The components of area, volume, perimeter, and surface area. 
These Python assert statements stop the program if their condition is False. Copy them to 
the bottom of your solution program. Your solution is correct if the following assert statements’ 
conditions are all True: 
assert area(10, 10) == 100 
assert area(0, 9999) == 0 
assert area(5, 8) == 40 
assert perimeter(10, 10) == 40 
assert perimeter(0, 9999) == 19998 
assert perimeter(5, 8) == 26 
assert volume(10, 10, 10) == 1000 
assert volume(9999, 0, 9999) == 0 
assert volume(5, 8, 10) == 400 
assert surfaceArea(10, 10, 10) == 600 
assert surfaceArea(9999, 0, 9999) == 199960002 
assert surfaceArea(5, 8, 10) == 340 
Try to write a solution based on the information in this description. If you still have trouble 
solving this exercise, read the Solution Design and Special Cases and Gotchas sections for 
additional hints. 
Prerequisite concepts: math operators, operator precedence 

Yüklə 1,51 Mb.

Dostları ilə paylaş:
1   ...   9   10   11   12   13   14   15   16   ...   124




Verilənlər bazası müəlliflik hüququ ilə müdafiə olunur ©azkurs.org 2024
rəhbərliyinə müraciət

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin