The 6 Best Python Easter Eggs

This article compiles a list of little surprises in the Python programming language.

Check out the following Instagram post to see them in an interactive mode (swipe right).

Here are the best easter eggs:

The Zen of Python

>>> import this
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

Hello World

>>> import __hello__
Hello world!

This is Love

>>> import this 
# prints poem first (see above)
>>> love = this
>>> love is True
False
>>> love is False
False
>>> love is not True or False
True
>>> love is love
True

Cool Variable Names

>>> from math import pi
>>> π = pi
>>> r = 3.5
>>> area = r**2 * π
>>> print(area)
38.48451000647496

Antigravity Comic

>>> import antigravity

Barry As FLUFL – The Diamond Operator in Python

>>> from __future__ import barry_as_FLUFL
>>> 1<>2
True
>>> 1!=2
SyntaxError: with Barry as BDFL, use '<>' instead of '!='

Read more here…

[Bonus] Cool Python Names

You can use any unicode identifier (in theory) as a name for a variable in Python.

>>> from math import pi
>>> π = pi
>>> area = π * r**2

>>> résumé = 'knows Python'
>>> 'Python' in résumé
True

Code from here.

Unfortunately, most editors don’t support this, yet. (How old-school!)

Related Video: The Top Python Tricks

You can get the coolest 18 Python tricks in this article!

Where to Go From Here?

Enough theory. Let’s get some practice!

Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.

To become more successful in coding, solve more real problems for real people. That’s how you polish the skills you really need in practice. After all, what’s the use of learning theory that nobody ever needs?

You build high-value coding skills by working on practical coding projects!

Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?

🚀 If your answer is YES!, consider becoming a Python freelance developer! It’s the best way of approaching the task of improving your Python skills—even if you are a complete beginner.

If you just want to learn about the freelancing opportunity, feel free to watch my free webinar “How to Build Your High-Income Skill Python” and learn how I grew my coding business online and how you can, too—from the comfort of your own home.

Join the free webinar now!

Leave a Comment