Printing Multi-Line Text with Separate Print Functions in Python

Using three print() function (one line - one function) print the following text:

----------------------------------------

VERSION: 1.0.1

----------------------------------------

Tip: The lines consist of 40 dash characters: '-'.

----------------------------------------

VERSION: 1.0.1

----------------------------------------

Solutions

Solution: 1

dash="-"*40
print("{}\nVERSION: 1.0.1\n{}".format(dash,dash))