I'd say using the "raw" formatting, using f. Use \ to escape the string, so you can import the date, person and quote.
return (' In '+ str(year) +', a person called '+ name +' said: '+ quote)
will be
return f(' In '+ str(year) +', a person called '+ name +' said: '+ quote)