2 lines
88 B
Python
2 lines
88 B
Python
def upper_first(string: str) -> str:
|
|
return "".join(string[0].upper() + string[1:])
|