I would like to display information in tabular form where each row contains field and value details.
**Field**|**Value**\n
Field1 value1\n
Field2 value2\n
Field3 value3\n
Field4 value4\n
Field5 value5\n
Field6 value6\n
Field7 value7\n
Field8 value8\n
Field9 value9\n
Field10 value10\n
. .
. .
. .
. .
. .
Field150 value150
I tried Python Tkinter treeview but it takes header information in column-wise. I'd like to know if there is any widget or any way where I can display treeview where header is at low level.
Any suggestions pls?