Intern — Middle
Transform the string, making the first letter uppercase
livecode
Task condition
Implement a function that takes a string as input and returns the same string but with the first letter capitalized. The rest of the characters in the string should remain unchanged.
def capitalize_first(text: str) -> str:
# your code here
pass