How to print a paragraph in Python?

How to print below format of sentence in python? 

A string that you "don't" have to escape 
  this 
  is a ............. multi-line 
  heredoc string -----------------> example

We can get the same format as below using print function in Python:

print("""
  A string that you "don't" have to escape 
  this 
  is a ............. multi-line 
  heredoc string -----------------> example
  """)