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