"""Exercise 5.5.5 — Comparing to None

Chapter 5: Data Structures — Everyday Programming

The program should check whether a username has been set, printing True
when it is still None.

This program contains exactly one bug. Solution: sol_5_5_5.py
"""

username = None
not_set = username is None
print(Not_set)   # True
