I would like to print the same message multiple times, each on its own line, with a blank line in between.
This is what I'm hoping for:
This store is closed today
This store is closed today
This store is closed today
Here's what I have but without being able to figure out how to include the line break
print(("This store is closed today\n ") * 3)
Should there be a print() somewhere?