Skip to main content

Command Palette

Search for a command to run...

Day 7: Dictionaries

Published
1 min read
Day 7: Dictionaries
A

Hi there! I’m a passionate learner who loves exploring Python's endless possibilities. Over the past years, I’ve immersed myself in coding, honing my skills by tackling diverse projects that combine creativity and problem-solving.

From building a modern rendition of the classic Asteroids game in Python to experimenting with data visualization and automation, I thrive on turning ideas into reality through code.

Follow along as I learn, grow, and share my journey!

Today, I started learning about Hash Tables or what in Python is called the Dictionary - a data structure you can use to quickly look-up values for a given key.

dictionary = {
    "A": "the letter A",
    "B": "the letter B",
    "Key": "Value",
}

Dictionaries will be an invaluable addition to my toolbox and I can't wait to start using them.

#100DaysOfCode

Follow me on Twitter at AllieNicole903