0
I think you mean python.
lower() converts the string to all lower case letters. Please remember that python strings are immutable, so the conversion won't be done in place, ie if you want to convert the string s to lowercase you have to do:
s = s.lower()
islower() returns True if all the characters in the string are lower case, False otherwise.