python - How to print the string "\n" -
python - How to print the string "\n" -
i want print actual next string: \n
, tried reads in takes new line operator.. how print following: \n
?
use
print "\\n"
or raw string
print r"\n"
have @ tutorial concerning strings.
python
Comments
Post a Comment