What is the syntax to print a multiline string in Python?
Answers
Answered by
6
Answer:
In Python, you have different ways to specify a multiline string. You can have a string split across multiple lines by enclosing it in triple quotes. Alternatively, brackets can also be used to spread a string into different lines. Moreover, backslash works as a line continuation character in Python.
Answered by
1
Answer:
The syntax is print("")
Explanation:
Similar questions