specials = "!ยฃ$%^&*()?><@#"
while True:
good_password = True
password = input("Enter your password: ")
if len(password)<8:
print("Minimum 8 Characters")
good_password = False
if not any(char in specials for char in password):
print("Include a Special Character")
good_password = False
if not any(char.isupper() for char in password):
print("Include a Capital Letter")
good_password = False
if not any(char.islower() for char in password):
print("Include a Lowercase Letter")
good_password = False
if not any(char.isdigit()for char in password):
print("Include a Number")
good_password = False
if good_password:
print("thats a secure password!")
break
