문제

I'd like to structure a dictionary in python whose keys are pairs of min/max values between 0 and 1. For instance:

myDict = {(0, .5): 'red', (.5, 1): 'orange'}

I'd like to be able to call entries in the dictionary with a number within the set [min, max).

>>> myDict[.464897]
'red'
>>> myDict[.5]
'orange'

I feel like there might be a nice, simple way to do this. It is elusive, though, as I am still in my python diapers.

도움이 되었습니까?

해결책

Assuming the intervals do not overlap, there are no gaps and they are sorted you use a binary search:

>>> keys = [0.5, 1] # goes from 0 to 1, specify end interval
>>> vals = ['red', 'orange']
>>> import bisect
>>> vals[bisect.bisect_right(keys, 0.464897)]
'red'
>>> vals[bisect.bisect_right(keys, 0.5)]
'orange'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top