Y
Hacker News
new
|
ask
|
show
|
jobs
by
quotehelp1829
1291 days ago
You forgot space between } and {
1 comments
jasonhansel
1291 days ago
It depends on whether you want the whitespace or not; if so, the ideal would be to use:
messages = [YOU, FART] print(" ".join(messages)
So that you can add additional messages (manually or programmatically) in the future. Always important to consider extensibility!
link