Posts by vinimvdz • 13 points
2 posts
-
0
votes2
answers106
viewsA: Tabulate Python
Show, worked out here, I managed to store the data in while True…
python-3.xanswered vinimvdz 13 -
-3
votes2
answers106
viewsQ: Tabulate Python
from tabulate import tabulate data = { 'Clients': ['Vini'], 'Foods' : ['Coca'], 'Drinks' : ['Pitu'] } data['Clients'] = input('Digite: ') print(tabulate(data, headers='keys', tablefmt='pretty')) I…
python-3.xasked vinimvdz 13