248,283 views
3 votes
3 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()

User Greg Parker
by
3.2k points

1 Answer

20 votes
20 votes
The right answer is : is.lower(letter)
User DBUK
by
2.4k points