Printing is slow because Godot has to build the string, pass it to the standard input, and display the printed data. The call toprint()involves passing data to your computer’s peripherals, like the display, which is slow. The print buffer also has a finite amount of space available, and...