def convert_to_string(num: int) -> str: return "My new string is " + str(num) convert_to_string(10)
My new string is 10