## password_strength.py print( "*Password Strength Assessment Program*" ) password = input( "Enter the password you want to test: " ) ## Delete the following line and add your own code to compute the strength. strength = "NOT ATTEMPTED" print( "The strength of your password is:", strength) # make sure that the answer is the last thing you print!