Question: Write a program stored in the file L3q5.py that: A) Gets two inputs from the user. Stores the inputs in variables called string_one and string_two.

Write a program stored in the file L3q5.py that:

A) Gets two inputs from the user. Stores the inputs in variables called string_one and string_two. Verifies whether the length is according to the constraints and prints the verification result. Certain constraints are imposed on the input pattern. The constraints are : For the first input : The input starts with a letter. Every letter is followed by exactly one number. A letter cannot be next to another letter. A number cannot be next to another number. The length should be 5. The input is made of only numbers and letters. This means that the input should not contain any symbols or special characters. For the second input: The input starts with a number. Every number is followed by exactly one letter. A number cannot be next to another number. A letter cannot be next to another letter. The length should be 7. The input is made of only numbers and letters. This means the input should not contain any symbols or special characters.

B) Extracts only the numbers from the variable string_one and stores it in a variable called numbers_one and extracts only the letters from the variable string_one and stores it in a variable called letters_one. Prints numbers_one and letters_one.

C) Extracts only the numbers from the variable string_two and stores it in a variable called numbers_two, and extracts only the letters from the variable string_two and stores it in a variable called letters_two. Prints numbers_two and letters_two.

D) Calculates the quotient and remainder when numbers_two is divided by numbers_one and stores it in a variable called quotient1 and remainder1 respectively. Print quotient1 and remainder1.

E) Concatenates letters_two with letters_one and stores it in a variable called result1. Print result1.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!