What is the output of the following code ?
>>> "12a".islower(), "12aA".islower()
(False, False)
(True, False)
(True, True)
(False, True)
Return true if all cased characters in the string are lowercase and there is at least one cased character, false otherwise.
In "12aA".islower() , A is an uppercase letter
Comment here: