Python Hash Tables: understanding dictionaries
Dictionaries are a really important part of Python but how can they be so fast and reliable? The answer is about Hash Tables… (more…)
Read more »
A set is a collection of distinct objects in mathematics. Python lets you create sets and perform basic operations on them. Before we get into how to work with sets, here’s a quick review of some key terms / phrases. Read more