Actions

Print

From Jedisaber Wiki

Revision as of 00:19, 27 June 2025 by Admin (talk | contribs)

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)