How to insert Dashed Lines in between Rows of a tabulate output

Im planning to insert dashed lines in between the rows.

Generate the tabular report

report_content = tabulate(report1, headers=‘keys’, tablefmt=‘rst’,showindex=‘false’)
print(table).
the dashed lines are only showing in between top and bottom not in between rows!

my .csv data
|TYPE|SHIP DATE|REVENUE ALL SERVICES|REVENUE PRIORITY|REVENUE ECONOMY|PROS ALL SERVICES|PROS PRIORITY|PROS ECONOMY|
|POSTED AFTER MONTH END|01-03-2020|9065.59|6065.59|0|1|1|0|
|POSTED AFTER MONTH END|07-03-2023|1223.16|878.34|6344.82|7|2|2|

Hi @mudassir, and welcome!

Please read the pinned post about how to format code when pasting it into your posts: About the Python Help category

I do not have an answer for your question, but proper formatting will make your code more readable so it is easier for others to help you.

1 Like

Thanks Matt, Sure will do the Same