Computer Science, asked by prajjwal704, 11 months ago

What is the syntax to print a multiline string in Python?​

Answers

Answered by Anonymous
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 sshreyansh2805
1

Answer:

The syntax is print("")

Explanation:

Similar questions