CUA Python Program & Lambda Functions Project
Description
Unformatted Attachment Preview
the correct value in a formatted date string.
For example:
date=”10/26/2022″
#write 3 lambda functions
print(month(date))
print(day(date))
print(year(date))
The above should print
10
26
2022
2) Read in a book from project Gutenberg like previous assignments. Create a
list of all words in the document (use split or a regular expression).
Using List Comprehension, create a new list that only contains words that are
longer than 10 characters in length and are capitalized (first letter). Must use
List Comprehension to get credit for the question.
3)Create a Python Program that will ask the user for a password (use input)
Verify that the password meets the following conditions:
-must be at least 12 characters long (can be longer)
-must have uppercase and lowercase
-must contain at least 1 special character (!~#$%^&*{}+_)
-must be a mix of numbers and letters
1) You must do this only using regular expressions so for instance this will not be
accepted
if len(password)
Purchase answer to see full
attachment
Have a similar assignment? "Place an order for your assignment and have exceptional work written by our team of experts, guaranteeing you A results."