Python Exercise 18 Problem: In this Python exercise, write a Python program that will take the input from a user on the name, weight (lbs), age, and height. Once the user inputs the data, sort the tuples by ascending order by the name. Exercise Requirements: Sort based on name(s) Sort…
Python Password Validation
Python Exercise 17 Problem: In this Python exercise, write a Python program that will prompt a user to input a password. The password must be validated to meet a certain criteria as shown below with regular expressions (RegEx). Exercise Requirements: Minimum length of transaction password: 8 Maximum length of transaction…