Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

python Press any key to start Task n, where n is the task number (1, 2, or 3) 1. The password rules for a login

python

Press any key to start Task n, where n is the task number (1, 2, or 3)

1. The password rules for a login are as follows. have at least eight characters. be mix of uppercase and lowercase alphabets. The first character must be an alphabet. have at least two digits. can have maximum one symbol only from $, #, @ Write a function in python that checks whether a string is a valid password. Write a python program that prompts the user to enter a password and displays valid password if the rules are followed or invalid password otherwise. You need to handle all possible exceptions. 2. Write python program to achieve the following functionalities. i. Prompt the user for a file name. If you get an answer that begins with q or Q go to step vii. ii. Read the file that contains four lines with 4 integers on each line separated by a space. Each integer is a positive 1- or 2-digit number. iii. Using a function, print the 16 numbers in a square as shown below. iv. Determine if the numbers form a magic square. In a magic square each row, column and the two diagonals each add up to the same sum (always 34) and each value from 1 to 16 is used exactly once in the square. Each of the tests as noted in the next step (step v) should be written as a function that prints necessary messages and returns a True if all of its tests pass and False otherwise. Your main function should print It is a magic square only if all the tests pass. Each function should be appropriately named and have the entire square as its only input parameter. v. Print whether or not it is a magic square. If it is not, print all of the reasons found: a. Bad row sum = ___ b. Bad column sum = ___ c. Bad diagonal sum = ___ d. Not every integer used exactly once. vi. Loop back to step i and do this for another square. vii. Print Quitting. Sample output: Which file? sq1.txt 16 3 2 13 5 10 11 8 9 6 7 12 4 15 14 1 It is a magic square. Which file? sq2.txt 16 3 2 13 9 6 7 12 4 15 14 1 5 10 11 8 Bad diagonal sum = 44 Bad diagonal sum = 40 Your program will be tested with different squares (some magic, some not) to verify that you have performed all the necessary tests to verify that the square is magic. You should make up your own files with numbers, some magic, some not. You must protect against all possible errors exceptions. 3. A standard letter/number mapping for telephones is: Write a function getNumber(alphabet), that returns a number, given an uppercase letter. Write a python program that prompts the user to enter a ten digit phone number as a string. The input number may contain mix of letters and digits. The program translates a letter (uppercase or lowercase) to a digit and leaves all digits in their places.

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

Step: 3

blur-text-image

Ace Your Homework with AI

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

Get Started

Students also viewed these Databases questions