Logging ======= Use ``print`` when you want to display a help statement for a command line application. For the `rest `_, use the `logging library `_. **No**:: def f(): print('Loading the data...') ... print('Computing') ... **Yes**:: def f(): logging.debug('Loading the data...') ... logging.debug('Computing') ...