Skip to content

Instantly share code, notes, and snippets.

@psncl
psncl / moon.py
Last active October 10, 2025 06:32
Python random iteration in dicts
moon_phases = {
(22, "Waning"),
(15, "Full"),
(8, "Waxing"),
(1, "New"),
}
for (days, phase) in moon_phases:
print(days, phase)