Printing lines in python
How c开发者_StackOverflow社区an i print lines in python like this
print " text here
text here
text here
line here"
I am trying cgi, so i dont have to use print to each line i have to print
thanks
use triple quoted strings
print( """
Something
You
can
print
multi-line
""")
精彩评论