Does anybody know what O(?) for python's dictionary 'get(key)' method?
I've tested it with cProfile module and get same results of time for 100, 1000, 10000, 100000, 1000000, 100000000 records in the dictionary.
Does it means that python's dictionary provides O(1) access time for any key?