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
Dostları ilə paylaş: