feat: added examples_tutorials
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
Use terminaltables to draw a nice table
|
||||
"""
|
||||
from terminaltables import SingleTable
|
||||
|
||||
def main():
|
||||
table_data = [
|
||||
["Heading1", "Heading2"],
|
||||
["row1 column1", "row1 column2"],
|
||||
["row2 column1", "row2 column2"],
|
||||
["row3 column1", "row3 column2"],
|
||||
]
|
||||
t1 = SingleTable(table_data)
|
||||
print(t1.table)
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Reference in New Issue
Block a user