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