Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Raw string

>>> print('C:some
ame')  # here 
 means newline!
C:some
ame
>>> print(r'C:some
ame')  # note the r before the quote
C:some
ame
Source by docs.python.org #
 
PREVIOUS NEXT
Tagged: #Raw #string
ADD COMMENT
Topic
Name
5+9 =