9 lines
204 B
Python
9 lines
204 B
Python
|
def unify(string: str) -> str:
|
||
|
"""
|
||
|
returns an unified str, to make comparosons easy.
|
||
|
an unified string has following attributes:
|
||
|
- is lowercase
|
||
|
"""
|
||
|
|
||
|
return string.lower()
|
||
|
|