6.3.8: Higher/Lower 2.0

The Problem

No matter what I do, it says the number is too high or too low. I try reworking it, and it always gives me an incorrect response.

The Solution

Students usually make the same mistakes on this one.

Note: The user should be able to enter a number with more than 2 decimal places and the program should check if that value rounded to 2 decimal places matches the number to guess to 2 decimal places.)

round(3.1456, 2)

Round is a built-in function in Python.
So for starters, make sure you are comparing the values AFTER you've rounded them!