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