Lesson 6: Special Characters — \n and Multiple Prints
How do we produce output that spans more than one line? With the special character \n or with several separate print() calls.
\n is like pressing ENTER on the keyboard — a tiny mark that tells Python to jump to the next line.
- escape character
- A special character starting with \ that changes behaviour.
- newline
- A jump to a new line on screen.