Find a quote from a famous person, print the quote and the name of the person using a variable called famous_person
Then compose your message and represent it with a new variable called message and print the message.
Well, the line in my question creates a tuple. Long story short: the message contains a pair of strings.
When you pass a tuple to print(...) it prints what you described: a value in parentheses with text in apostrophes. If you want to print it as a concatenated text then you have got a few options:
You can do just a concatenation: message = famous_person + ' ' + quote
Use a f-string: message = f"{famous_person} {quote}"
Pass it to the print(...) using arguments expanding: print(*message)
It is now up to You what you chose (and which one You understand)
The assignment wanted you to “compose the message”, like described above. But you should also be aware of this basic technique with the print function: