KnowledgeBoat Logo
|

Robotics & Artificial Intelligence

The method used to check that string contains all lower case letter is …………… .

  1. lower()
  2. small()
  3. issmall()
  4. islower()

Python String Manipulation

3 Likes

Answer

islower()

Reason — The islower() function returns True if the string is in lower case.

Answered By

2 Likes


Related Questions