Challenge 3: Find Values Within a Range
Explore implementing a Python function to determine if a pair of numbers lies within the range defined by x < 1/3 < y. This lesson sharpens your skills in comparing numeric values and constructing conditionals.
We'll cover the following...
We'll cover the following...
Problem Statement
Given an inRange(x,y) function, write a method that determines whether a given pair (x, y) falls in the range (x < 1/3 < y) ...