Dict is not a good type for tables because it doesn't preserve order. So the rows or columns will always be printed in alphanumeric order, not necessarily in the order you want.
A better option might be to pass the headers as a list separate from the data.
Dict is not a good type for tables because it doesn't preserve order. So the rows or columns will always be printed in alphanumeric order, not necessarily in the order you want.
A better option might be to pass the headers as a list separate from the data.