def get_formatted_text(first,last):
full_name=(f'{first} {last}').title()
return full_name #only works with print. Why?
get_formatted_text('Dick','Long')
I don't see any output in my terminal when I do the function call. It works with print function, but I don't understand why print is needed when return will show the output?