def upper_first(string: str) -> str: return "".join(string[0].upper() + string[1:])