I have a single dict and want to print in table format ``` print(tabulate({"Name":"test","Age":"29"})) ``` something like below ``` Name | test --------------- Age | 29 ``` any way to do this