Articles → Python → Display Multiline String In PythonDisplay Multiline String In PythonIn this article, we will display multiline strings in Python.Example You can use ‘’’ for multiline strings.message = ''' This is the test message This is the second line of the message ''' print(message)Output Posted By - Karan Gupta Posted On - Tuesday, May 14, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
message = ''' This is the test message This is the second line of the message ''' print(message)
Query/Feedback