53.5k views
18 votes
Which string method returns true if the character is a lowercase letter?

letter = input("Enter a letter: ")

islower(letter)

isLower(letter)

letter.islower() * is correct

letter.isLower()

1 Answer

13 votes
The right answer is : is.lower(letter)
User Zilcuanu
by
5.0k points