This a screenshot from a Tkinter Listbox in a program I'm writing:
Why does the \t
character show up as a black bar?
On a Mac it shows up normally (as a tab), but on Windows I get this. I think it might have something to do with character encoding because strings are unicode by default in OS X but not Windows?
I tried writing the tab as chr(9)
instead of \t
, but it didn't help.