"""Exercise 20.3.2 — Assignment when comparing a password length

Chapter 20: Common Pitfalls — Everyday Programming

This program should confirm a password has exactly 8 characters.

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

length = 8
if length = 8:
    print("Valid length")
