#!/usr/bin/python3 """ This line is part of multiline comment This program shows examples of triple quoted strings """ # assigning multiple line string to variable poem = """\ The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep. """ print(poem, end='')