Python String Casefold() MethodPython Casefold() method returns a lowercase copy of the string. It is more simillar to lowercase method except it revomes all case distinctions present in the string. For example in German, 'β' is equivelent to "ss". Since it is already in lowercase, lowercase do nothing and prints 'β' whereas casefold converts it to "ss". SignatureParametersNo parameter is required. Return TypeIt returns lowercase string. Python VersionThis function was introduced in Python 3.3. Python String Casefold() Method Example 1Output: Old value: JAVATPOINT New value: javatpoint Python String Casefold() Method Example 2The strength of casefold, it not only converts into lowercase but also converts strictly. See an example below 'β' is converted into "ss". Output: Old value: JAVATPOINT - β New value: javatpoint ? ss Python String Casefold() Method Example 3If string is in camelcase, it still converts whole string into lowercase. Output: Old value: JaVaTpOiNt New value: javatpoint Next TopicPython Strings |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India