[Extra Credit: 10 pts] You should be writing two different f…
[Extra Credit: 10 pts] You should be writing two different functions to get full points for extra credit. Write a Python function called count_lowercase() that takes a string as an argument and counts and returns the number of lowercase characters in the argument. Write a Python function called count_digit() that takes a string as an argument and counts and returns the number of digits in the argument. Use the functions in Step a. and Step b. above to write a Python statement to validate a password where the password should have at least one lowercase character and one digit character.
Read Details