Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python break long string multiple lines

To break a long string without making it show in the terminal that you wrote it on multiple lines.

a = "This is the first part of a long string" 
	"This is the second part of a long string" 
	"This is the third part of a long string"

print(a)
		
 
PREVIOUS NEXT
Tagged: #python #break #long #string #multiple #lines
ADD COMMENT
Topic
Name
6+9 =