Explore >> Select a destination


You are here

inventwithpython.com
| | fuzzyblog.io
2.2 parsecs away

Travel
| | [AI summary] The author discusses differences between Python and Ruby regarding dictionary key access and missing keys, highlighting cultural design philosophies and the Pythonic .get() method.
| | blog.pchudzik.com
4.6 parsecs away

Travel
| |
| | www.nkantar.com
2.6 parsecs away

Travel
| | A bit of nuance about dealing with null and missing values in Python dictionaries.
| | blog.demofox.org
20.0 parsecs away

Travel
| Hash tables are great in that you can hash a key and then use that hash as an index into an array to get the information associated with that key. That is very fast, so long as you use a fast hash function. The story doesn't end there though because hash functions can have collisions...