Print string

From LemonWiki共筆
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Print the string spanning multiple lines

PHP

Using the Heredoc syntax[1] to print the string spanning multiple lines

<?php

echo <<<'EOD'
The quick brown fox jumps over the lazy dog
using nowdoc syntax. Backslashes are always treated literally,
e.g. \\ and \'.
EOD;

Python

Using triple quotes[2] to print the string spanning multiple lines

print("""The quick brown fox 
jumps over the lazy dog""")

Related pages

References