password = input("Enter password: ")
if len(password) >= 8:
print("Strong password")
else:
print("Weak password")
This project introduces real-world security thinking.
password = input("Enter password: ")
if len(password) >= 8:
print("Strong password")
else:
print("Weak password")
This project introduces real-world security thinking.