Articles → Python → Display Multiline String In PythonDisplay Multiline String In PythonIn this article, we will display multiline string in python.Example You can use ‘’’ for multiline string.message = ''' This is the test message This is second line of message ''' print(message)Output Click to EnlargePosted 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 second line of message ''' print(message)
Query/Feedback