Printing and Logging
Reference: https://docs.python.org/3/library/functions.html#print
In Python, we use the print()
statement to output information onto the command-line. This is helpful for providing user feedback, as well as for debugging purposes.
It is possible to print multiple objects, including different kinds of objects, by separating each with a comma:
See also: pretty printing with the pprint
module.
Last updated