Posts in 2020
-
Python unicode string lowercase and caseless match
February 23, 2020 in Python
str.lower()
andstr.casefold()
str.lower() and str.casefold() Starting with Python 3.0, strings are stored as Unicode. Python defined to two functions str.lower() and str.casefold() can be used to convert string to lowercase: str.lower() Return a copy of the string with all the …