|
|
|
|
|
by jasonhansel
1292 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! |
|