32. Escape Sequence Flashcards
This is to know how to know to format printed text when coding and what each symbol used means
1
Q
how do you do aspostraphes in python?
A
use brakets
2
Q
how do do a quotation in a quote?
A
-use escape sequences, basically adding a slash
3
Q
what does a slash do
A
-allowing it to know that it is a string?
4
Q
How do you add an actual backslash? \
A
\
5
Q
what does \t mean in a string?
A
tab in a line with code
“\t
6
Q
\n means?
A
a new line