1
I have a list of months from January to December. I have another list that has the month and a value. For example:
Jan = 12.00
Fev = 15.00
Ago = 10.00
I want to display the whole year and show every month. Months that have no value at all should appear as 0.
Post your code, it’s easier to help you.
– gato
It’s a list or a dictionary?
– Leonel Sanches da Silva
This list of months I have is a dictionary months = [Jan,Feb...] .. and the other list is the result of a query, if it has the value it displays the month
– Leo