How can I edit the Text Size in a Python Pretty Print Table html string?

Viewed 10

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?

0 Answers
Related