Created
September 11, 2014 09:28
-
-
Save acaranta/875ba285d4aa60c19141 to your computer and use it in GitHub Desktop.
Text Table ... nice display of data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import texttable | |
#create table | |
table = texttable.Texttable() | |
table.set_cols_align(["l", "l"]) | |
table.set_cols_width(["12", "12"]) | |
table.header(["Col 1", "Col 2"]) | |
# Add Rows | |
table.add_row([vluevar, "hellow"]) | |
#print it | |
print table.draw() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment