strings.lowerยถ

Functionsยถ

lower(โ†’ย str)

Will convert the entire string to lowercase letters

Module Contentsยถ

strings.lower.lower(word: str) strยถ

Will convert the entire string to lowercase letters

>>> lower("wow")
'wow'
>>> lower("HellZo")
'hellzo'
>>> lower("WHAT")
'what'
>>> lower("wh[]32")
'wh[]32'
>>> lower("whAT")
'what'