So far in this series we've stored data using strings, integers, arrays, dictionaries, and sets. But what happens when you want to store a value that can only ever be one of a fixed list of options? 🤔

That's exactly what enums are for.







😬 The Problem — Strings Are Dangerous


Let's say you're building an app that tracks which arc a...