
Solve In Python
Provide a picture of the code in Python with input and output
Lab 9 – String Manipulations
SUBMIT original code in Python to solve the problem below.
Write a
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 2 steps with 3 images

- (3) Write a C# .NET Core Console App that asks the user to enter a number and then displays a string with the original number followed by the reverse of the number. For example, if the user entered 123 as an int you program should create a string "123321" and display it on the screenarrow_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_forwardIn Python represents: Empty string Space Nothing Will give an error.arrow_forward
- Exercise 3 – Roman Numerals Exercise Tasks: Create a visual studio C++ project exercise3 and submit the cpp file when completed Create a C++ program that converts integers between 1 and 3999 into the corresponding roman numerals. Your solution should print an error message for incorrect input. The following roman numeral conversions should prove useful: 1. I 6. VI 50. L 900. CM2. II 9. IX 90. XC 1000. M4. IV 10. X 100. C 5. V 40. XL 500 D. Modify the following tester code to obtain an integer from the user and check that it is between 1 and 3999. Then print out the corresponding roman numerals. While the sample code uses an ifthenelse, you could also use a switch statement. /****************************************************** * Roman Numeral Converter August 13 * converts base 10 positive integer >=0 <4000 to roman numerals * @author <your name here> */ #include <iostream> using…arrow_forwardAnswer 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_forwardPlease help in JavaScriptarrow_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





