Result Size:
625 x 571
demo_string_backslash.py:
txt = "This will insert one \\ (backslash)." print(txt)
x
txt
=
"This will insert one \\ (backslash)."
print
(
txt
)
C:\Users\My Name>python demo_string_backslash.py
This will insert one \ (backslash).