Python Function Reference

print
Prints objects to the console after converting them to string representation.
Python 3.13
print(*objects)
*objects
The objects to print to console.
Examples
Python 3.13
>>> print("Hello, world!")
Hello, world!