Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to use prettytable with python

from prettytable import PrettyTable
A = PrettyTable()
A.add_column("Pokimon",["wartortle"])
A.add_column("Type",["Water attack"])
print(A)
#look i don't know about these pokimones al lot so this is what i got for you
 
PREVIOUS NEXT
Tagged: #prettytable #python
ADD COMMENT
Topic
Name
7+9 =