Answers for "how to use prettytable with python"

1

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
Posted by: Guest on September-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language