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