Answered step by step
Verified Expert Solution
Link Copied!

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??
image text in transcribed
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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems An Application Oriented Approach Complete Version

Authors: Michael Kifer, Arthur Bernstein, Richard Lewis

2nd Edition

0321268458, 978-0321268457

More Books

Students also viewed these Databases questions

Question

Find the derivative of y= cos cos (x + 2x)

Answered: 1 week ago

Question

What is the basis for Security Concerns in Cloud Computing?

Answered: 1 week ago

Question

Describe the three main Cloud Computing Environments.

Answered: 1 week ago