
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
[SHORT ANSWER] Use Python. Using loop, if, and string methods validate the string variable password by making sure the length of the password is at least 8 characters and has at least one alphabet and one digit. Display appropriate messages as shown in the following examples (use any additional variables):
![[SHORT ANSWER] Using loop, if, and string methods validate the string variable password by making sure
the length of the password is at least 8 characters and has at least one alphabet and one digit. Display
appropriate messages as shown in the following examples (use any additional variables):
Example #1: Suppose password = "MyPass123" then, the output should display as follows:
VALID Password
Exampie #2: Suppose password = "MyPass1" then, the output should display as follows:
INVALID Password
Example #3: Suppose password = "MyPassword" then, the output should display as follows:
INVALID Password
Example #4: Suppose password = "12345678" then, the output should display as follows:
INVALID Password](https://content.bartleby.com/qna-images/question/2e95af97-af2b-4cd4-9c2c-df8a0e68d298/5ce4d096-28f8-412c-a7cb-ffdf1cb88bad/wk09uq_thumbnail.jpeg)
Transcribed Image Text:[SHORT ANSWER] Using loop, if, and string methods validate the string variable password by making sure
the length of the password is at least 8 characters and has at least one alphabet and one digit. Display
appropriate messages as shown in the following examples (use any additional variables):
Example #1: Suppose password = "MyPass123" then, the output should display as follows:
VALID Password
Exampie #2: Suppose password = "MyPass1" then, the output should display as follows:
INVALID Password
Example #3: Suppose password = "MyPassword" then, the output should display as follows:
INVALID Password
Example #4: Suppose password = "12345678" then, the output should display as follows:
INVALID Password
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by stepSolved in 4 steps with 5 images

Knowledge Booster
Similar questions
- Program Purpose - Professional Athletes often hire other professionals to help take care of matters for them. We will group them in four categories: Lawyers, Personal Assistants, Agents, and Trainers. They all get paid a percentage of the athlete's total yearly salary. Lawyers - 10%, Personal Assistants - 3%, Agents - 7%, and Trainers - 5% . Prompt the user to enter the athlete's salary for the year (ensure that the entered value is positive). The user should then enter the name and category of each of the hired professionals. The athlete should be able to hire as many professionals in each category as he/she wants, even if it is more than he/she can afford. Based on the category, calculate the amount that each professional should be paid. After all data has been entered, print the names of each professional hired, how much each is being paid, the total amount the athlete paid, and how much the athlete has left.arrow_forward(1) Prompt the user for a string that contains two strings separated by a comma • Examples of strings that can be accepted: • Jill, Allen • Jill, Allen • Jill, Allen Ex: Enter input string: Jill, Allen (2) Print an error message if the input string does not contain a comma. Continue to prompt until a valid string is entered. Note: If the input contains a comma, then assume that the input also contains two strings Ex: Enter input string: Jill Allen Error: No comma in string. Enter input strings ming Fundamentals home > 9.11: LAB: Warm up: Parsing strings Ex: (3) Extract the two words from the input string and remove any spaces. Store the strings in two separate variables and output the strings. Enter input string: Jill, Allen First word: Jill Second word: Allen (4) Using a loop, extend the program to handle multiple lines of input. Continue until the user enters q to quit Ex: Enter input string: Jill, Allen First word: Jill Second word: Allen 0 Enter input string: Golden Monkey , First…arrow_forwardPython code of part b pleasearrow_forward
- How can i find the number of !' chars in the user entered string. Programming language: JAVAarrow_forward9. Use string methods to extract the website domain from an email, e.g., from the string "tomas.beuzen@fakemail.com", you should extract "fakemail". [) enail = "tonas. beuzengfakenail.com # Your answer here. • 10. Given the variable language which contains a string, use if/elif/else to write a program that: • return "I love snakes!" if language is "python" (any kind of capitalization) • return "Are you a pirate?" if language is "R" (any kind of capitalization) • else return "What is language ?" if language is anything else. O language = "python" # Your answer here.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY