P ython p rogramming e xercises



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

Further Reading 
You can use Python’s decimal module to represent fractional numbers more accurately than 
floating-point values can. You can learn about this module at the Python Module of the Week blog at 
https://pymotw.com/3/decimal/.
One programming technique to avoid rounding errors is to stick with integers: instead of 
representing $1.25 as the float 1.25 you can use the integer 125 for 125 cents, or instead of 
representing 1.5 minutes as the float 1.5 you can use the integer 90 for 90 seconds or even 90000 
for 90,000 milliseconds. Integers and the decimal module’s Decimal objects don’t suffer from 
rounding errors like floating-point numbers do. 


11 
E X E R C I S E # 3 : O D D & E V E N
isOdd(13)
→ 
True 
isEven(13)
→ 
False 
Determining if a number is even or odd is a common calculation that uses the modulo operator. 
Like Exercise #2, ―Temperature Conversion,‖ the functions for this exercise’s solution functions can 
be as little as one line long. 
This exercise covers the % modulo operator, and the technique of using modulo-2 arithmetic to 
determine if a number is even or odd. 
Exercise Description 
Write two functions, isOdd() and isEven(), with a single numeric parameter named 
number
. The isOdd() function returns True if number is odd and False if number is even. The 
isEven()
function returns the True if number is even and False if number is odd. Both 
functions return False for numbers with fractional parts, such as 3.14 or -4.5. Zero is considered 
an even number. 
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 isOdd(42) == False 
assert isOdd(9999) == True 
assert isOdd(-10) == False 
assert isOdd(-11) == True 
assert isOdd(3.1415) == False 
assert isEven(42) == True 
assert isEven(9999) == False 
assert isEven(-10) == True 
assert isEven(-11) == False 
assert isEven(3.1415) == False 
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: modulo operator 


Python Programming Exercises, Gently Explained 
12 

Yüklə 1,51 Mb.

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




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

gir | qeydiyyatdan keç
    Ana səhifə


yükləyin