Question: def more_upper_than_lower(message: str) -> bool: Return True if and only if message contains more uppercase letters than lowercase letters. >>> more_upper_than_lower('I LOVE Caps Lock! :D')
def more_upper_than_lower(message: str) -> bool: """Return True if and only if message contains more uppercase letters than lowercase letters.
>>> more_upper_than_lower('I LOVE Caps Lock! :D') True >>> more_upper_than_lower('Does THIS Work?') False """
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
