1from prettytable import PrettyTable
2PTables = PrettyTable()
3
4PTables = PrettyTable()
5 PTables.field_names = ["Selection No.", "Weapon Name", "Damage"]
6 PTables.add_row(["0", "Fist", "1 dp"])
7 PTables.add_row(["1", "Knuckle Busters", "2.5 dp"])
8 PTables.add_row(["2", "Cheap Knife", "5 dp"])
9 PTables.add_row(["3", "Wooden Baton", "6 dp"])
10 print(PTables)
1from prettytable import PrettyTable
2A = PrettyTable()
3A.add_column("Pokimon",["wartortle"])
4A.add_column("Type",["Water attack"])
5print(A)
6#look i don't know about these pokimones al lot so this is what i got for you
1from prettytable import PrettyTable
2PTables = PrettyTable()
3
4PTables = PrettyTable()
5PTables.field_names = ["Selection No.", "Weapon Name", "Damage"]
6PTables.add_row(["0", "Fist", "1 dp"])
7PTables.add_row(["1", "Knuckle Busters", "2.5 dp"])
8PTables.add_row(["2", "Cheap Knife", "5 dp"])
9PTables.add_row(["3", "Wooden Baton", "6 dp"])
10print(PTables)
11
12