Python Break Long String Multiple Lines

[Solved] Python Break Long String Multiple Lines | Scala - Code Explorer | yomemimo.com
Question : python break long string multiple lines

Answered by : odunosho-moses

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)

Source : | Last Update : Sun, 03 Jul 22

Answers related to python break long string multiple lines

Code Explorer Popular Question For Scala