I am trying to prepare a report using Python. So the first function produces some output and next, I run function 2 and get an output, at the end, I need all output one below the other saved in .pdf or .doc format at one location, with some header/title to the report. It's a kind of one-pager report with multiple outputs, it can be pandas data frame or pictures.
# Function 1 Output|Columns|Values||-------|------|| A | 100 | | B | 200 || C | 300 ||-------|------|# Some other processing steps.# Function 2 Output|Columns|Values||-------|------|| D | 400 | | E | 500 || F | 600 ||-------|------|