Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python Raw String to ignore escape sequence

>>> print("This is x61 
good example")
This is a
good example
>>> print(r"This is x61 
good example")
This is x61 
good example
 
PREVIOUS NEXT
Tagged: #Python #Raw #String #ignore #escape #sequence
ADD COMMENT
Topic
Name
1+1 =