Answered step by step
Verified Expert Solution
Question
1 Approved Answer
If the password doesnt mean a requirement I need the code to reprompt the user to put in the password! HOW do I do fix
If the password doesnt mean a requirement I need the code to reprompt the user to put in the password! HOW do I do fix that??
This program is a password validator that prompts the user for a password and checks if it is secure ta password is considered secure if it satisfies the following requirements - length of password is greater than or equal to 6 and less than or equal to 15 - it does not include spaces - it contains at least one digit - it contains at least one alphabetic character def is_valid_length(password): \#check if password length is between 6 and 15 if len(password) >=6 and len(password) Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started