1# String containing newline characters
2line_str = "I'm learning Python.\nI refer to TechBeamers.com tutorials.\nIt is the most popular site for Python programmers."
3print("Long string with newlines: \n" + line_str)
4
5# Creating a multiline string
6multiline_str = """I'm learning Python.
7I refer to TechBeamers.com tutorials.
8It is the most popular site for Python programmers."""
9print("Multiline string: \n" + multiline_str)