Learn
Code Challenge: Control Flow
In Range
in_range(num, lower, upper)
Instructions
1.
Create a function named in_range()
that has three parameters named num
, lower
, and upper
.
The function should return True
if num
is greater than or equal to lower
and less than or equal to upper
. Otherwise, return False
.