Daily Godot Tip #11: Using prints adds a space separator between things added to the print function while printt adds a tab separator

programming.dev/pictrs/image/ce94d32f-48ce-481a…

submitted a week ago by Ategon@programming.dev

Daily Godot Tip #11: Using prints adds a space separator between things added to the print function while printt adds a tab separator

This makes it easier to print out multiple things at the same time without needing to do a bunch of string concatenation

Easy way you can remember it is thinking s for space and t for tab. When you want to print normally just call print. Otherwise add s for space or t for tab on the end of the function for the separators.

110

Back to main discussion

a week ago

That's very useful, thanks!