util.strings.lowercase
Return a lowercase version of a string.
Arguments:
def util.strings.lowercase(
s: str = None,
):
Returns a string.
Example:
s = 'Foo bar'
s_lower = util.strings.lowercase(s=s) # 'foo bar'
Return a lowercase version of a string.
Arguments:
def util.strings.lowercase(
s: str = None,
):
Returns a string.
Example:
s = 'Foo bar'
s_lower = util.strings.lowercase(s=s) # 'foo bar'