Printing lines in python -
how can print lines in python this
print " text here text here text here line here"
i trying cgi, dont have use print each line have print
thanks
use triple quoted strings
print( """ can print multi-line """)
how can print lines in python this
print " text here text here text here line here"
i trying cgi, dont have use print each line have print
thanks
use triple quoted strings
print( """ can print multi-line """)
Comments
Post a Comment