From Jedisaber Wiki
Print prints stuff to the screen.
Basic Print stuff:
print("Print this.")
Will print:
Print this.
Escape Characters
In python, escape with a backslash \
Escape Sequence - Character
\\ Backslash
\b Backspace
\t Tab
\r Carriage Return (CR)
\n Line Feed (LF)
