I am trying to print out emojis as a table using tabulate
however I am not getting the right allighment. How can I fix that?
emojis = [['', '', '', '', '', '', ''],
['', '', '', '', '', '', ''],
['' , '', '', '', '', '', ''],
['', '', '', '', '', '', ''],
['', '', '', '', '', '', ''],
['', '', '', '', '', '', ''],
['', '', '', '', '', '', '']]
print(tabulate(emojis, tablefmt="fancy_grid"))
this is what I am getting:
╒═══╤═══╤═══╤═══╤═══╤═══╤═══╕
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
├───┼───┼───┼───┼───┼───┼───┤
│ │ │ │ │ │ │ │
╘═══╧═══╧═══╧═══╧═══╧═══╧═══╛