Suppose I have a sample table:
myTable = PrettyTable([])
myTable.add_column("X", [2])
myTable.add_column("Y", [1])
myTable.get_html_string()
How would I edit the font size in the table from the HTML string?
Suppose I have a sample table:
myTable = PrettyTable([])
myTable.add_column("X", [2])
myTable.add_column("Y", [1])
myTable.get_html_string()
How would I edit the font size in the table from the HTML string?