Lesson 25: Password Strength Checker

password = input("Enter password: ")

if len(password) >= 8:
  print("Strong password")
else:
  print("Weak password")

This project introduces real-world security thinking.