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.
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.
I found a solution by setting
from prettytable import PrettyTable, ALL
x = PrettyTable()
x.hrules=ALL
it makes all dashed borderline between the rows.