![]() |
VOOZH | about |
Python String casefold() method is used to convert string to lowercase. It is similar to the Python lower() string method, but the case removes all the case distinctions present in a string.
Syntax: string.casefold()
Parameters: The casefold() method doesn't take any parameters.
Return value: Returns the case folded string the string converted to lower case.
Output:
lowercase string: geeksforgeeks
Python String casefold() Method is more aggressive in conversion to lowercase characters because it tends to remove all case distinctions in a String.
Output:
Using lower(): ß Using casefold(): ss
Here, we have a Python String with characters of mixed cases. We are using the Python casefold() Method to convert everything to lowercase.
Output:
Original String: WeightAGE oF THe DiScuSSiON String after using casefold(): weightage of the discussion