1

I'm using python prettytable, and want to add borderlines between row items. Is there any idea? Or can I at least add padding between the rows?

Thanks.

Mark Yoon
  • 330
  • 4
  • 17

1 Answers1

3

I found a solution by setting

from prettytable import PrettyTable, ALL x = PrettyTable() x.hrules=ALL

it makes all dashed borderline between the rows.

Mark Yoon
  • 330
  • 4
  • 17