
Solve In Python
Lab 9 – String Manipulations
SUBMIT original code in Python to solve the problem below.
Write a program that will verify that a password has the required characters. Password
Requirement:
• Must be at least 9 characters
• Must include an upper and lower case letter
• Must include at least one number
• Must include at least one of the following special characters: #, !, $, _
The user will be prompted to enter a password then a message will be sent whether the
password was accepted or rejected. If the password is rejected, the user should be
instructed to resubmit the password with a reminder of what is required in the password.
Functions could be helpful in this program.

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 3 images

- eqweqweq python please.arrow_forwardString: abcdefghijklmnopqrstuvwxyzyxwvutsr qponmlkjihgfedcba Make a program that: reads a letter from standard input print the above string up to this letter For example, if the letter was c, the output would be: abcba Must use a function and Pythonarrow_forwardC++ - No library functions like atoi Write a machine language program to output your first name on the output device. Submit your "machine code" followed by a 'zz.' An example of the machine code to output "hello" is shown below. This is an example of what a machine language submission would look like: 50 00 48 50 00 65 50 00 6c 50 00 6c 50 00 6f 00 zzarrow_forward
- Strings and string manipulation Part A: Building upon an Existing Solution Redesign the solution in the following manner. Ask the user for their name and their email addresses before you display the results of the conversions. When the user enters their email address search the string for the @ symbol. If the symbol is not found, ask the user to re-enter their email address till they get it right. When you display the conversion output to the user, you must include the user’s name in the output. Part B: Write Something New! Write a complete and syntactically correct Python program to solve the following problem: Input a date in numeric format from the user e.g. mm/dd/yy. Examine the month entered by the user, if it is larger than 12 or smaller than 1, issue an error message and ask for input again. Perform similar validation tests for the date and year. Year must be 2015. (Any other year is invalid). In addition, the year must only be two digits long.. Once all input has been…arrow_forwardC++arrow_forwardTrue or False _(1) The expression n/3*(8+4) evaluates to 16 if n=4 ___(2) x is greater than both y and z can be written as the statement x>y&&z ; in Java. ___(3) In Java a string is automatically an object.arrow_forward
- plz make appliction with forms I do not want the simple code I want this code with the output form this should not be in regular I want this in application fomr Q.No.1: Write a C# Sharp program that takes distance and time as input (in textboxes) and displays the speed in kilometres per hour and miles per hour. Test Data:Input distance (metres): 50000Input timeSec (hour): 1Input timeSec (minutes): 35Input timeSec (seconds): 56Expected Output:Your speed in metres/sec is 8.686588Your speed in km/h is 31.27172Your speed in miles/h is 19.4355arrow_forwardIn Python represents: Empty string Space Nothing Will give an error.arrow_forwardJava please Line is a String object that holds an unknown number of int values separated by spaces. Write a segment of code that computes and displays the sum of the values in line.arrow_forward
- Answer must be in C++ You have been hired by a coffee shop to write a program to validate employee's login passwords. You must ensure that the password meets certain criteria, as follows: The password must be at least five (5) characters long The password must contain at least one uppercase and at least one lowercase letter The password must contain at least one digit The password must contain at least one of the following ten characters: ? # % & ! @ { } ^ \ Write the program to allow the user to enter a potential password in the main program, then passes this value (in an array) into a function that will verify that it meets the stated criteria. For each criteria that it does not meet, a message MUST be displayed. For example, if the user enters "qry2" then three messages should display, first that it is not five characters long, second that it does not contain an uppercase letter and third that it does not contain one of the special ten cahracters. It does contain a…arrow_forwardlanguage javaarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





