0
Could someone explain me?
What we use blackslash for?, I can't get what is used to
4 ответов
+ 2
Please what language.Povide relevant tags
+ 1
\n —> next line
\t —> insert TAB
\a —> beep sound
& etc
also you can use \\ for inserting \
these are in string varables
in syntax if you use \ it knows as something like wordwrap in html editor just for simplify code reading
0
You can use backslash also to escape a symbol in e string, p.e.:
Print('Hello\'''Hello')
Result: Hello'''Hello