Built-in Types — Python 3 documentation#str.lower
str.lower()Return a copy of the string with all the cased characters [4] converted to lowercase. For example:
>>> 'Lower Method Example'.lower() 'lower method example'The lowercasing algorithm used is described in section 3.13 ‘Default Case Folding’ of the Unicode Standard.
Printed 2026-06-28.
(echo:: @ ᯤ)