Say I have a dictionary in Python {1:'a', 100:'b', 1024:'c'}
I want to build a function that can look for not only the exact value of the key, but also approximated values. For instance, the function can return b
if the input is 99 or 101.
Could you suggest me some approaches?
If you have a finite range for the values of the keys that is known in advance something like this indexing with tuples
To find the value of a key:
Find 1024.01:
Find
1025.01
: