1 2 3 4 5 6 7 8 9 10
def process_text(text: str) -> str: """ Convert text to uppercase. This function takes input text and returns it in uppercase. Returns: str: The uppercase version of the input text """ return text.upper()