Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python raw string

#A raw string considers backslash as literal instead of an escape character
print(r"CUsersMyNameDesktop")
#Without the r in front you will have to escape the  with another 
print("CUsersMyNameDesktop")
#Both will print the same thing "CUsersMyNameDesktop"
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #raw #string
ADD COMMENT
Topic
Name
5+1 =