Python - Print a line multiple times with a break after each line

82 Views Asked by At

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?

0

There are 0 best solutions below