strings.lower¶
Functions¶
|
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'