I’m not a (medical) doctor. But many studies show that a high level of Omega 3 in your blood leads to a longer and healthier life: “Higher circulating individual and total [Omega 3] levels are associated with lower total mortality.” [1]
But which foods do contain the highest levels of Omega 3?
Solve this Python puzzle to find out!
# PYTHON PUZZLE # Omega 3 (mg per 100g) omega3_table = { "Salmon" : 2260, "Hering" : 1729, "Sardines" : 1480, "Flaxseeds" : 53400, "Eggs" : 400 } y = sorted(omega3_table, key=lambda x : omega3_table[x]) print(y[-1])
What’s the one food with the highest levels of Omega-3?
A single tablespoon of the winner food is all you need every day to improve your odds of living a longer and healthier life.
Click to see the solution and explanation on the Finxter puzzle-solving app.
As a Finxter Premium Member, you get access to a daily growing base of hundreds of Python puzzles for continuous improvement in Python.

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.
To help students reach higher levels of Python success, he founded the programming education website Finxter.com that has taught exponential skills to millions of coders worldwide. He’s the author of the best-selling programming books Python One-Liners (NoStarch 2020), The Art of Clean Code (NoStarch 2022), and The Book of Dash (NoStarch 2022). Chris also coauthored the Coffee Break Python series of self-published books. He’s a computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.
His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.