NEW: various python files

This commit is contained in:
xpk
2025-06-18 21:22:41 +08:00
parent 6c764730d3
commit 03797d6e8c
5 changed files with 135 additions and 9 deletions
+5 -5
View File
@@ -1,10 +1,10 @@
from terminaltables import SingleTable
table_data = [
['Heading1', 'Heading2'],
['row1 column1', 'row1 column2'],
['row2 column1', 'row2 column2'],
['row3 column1', 'row3 column2']
["Heading1", "Heading2"],
["row1 column1", "row1 column2"],
["row2 column1", "row2 column2"],
["row3 column1", "row3 column2"],
]
t1 = SingleTable(table_data)
print (t1.table)
print(t1.table)