Python Function Reference

lower
Return a copy of the string with all the cased characters converted to lowercase.
Python 3.13
str.lower()
Examples
Python 3.13
>>> 'HELLO'.lower()
'hello'