我想在PyQt中的QTextBrowser中写一个文本。我有这样的事情:
for line in working_data:
word = line.split(";")
self.ui.textBrowser.append("{:30}{:>30}".format(word[1], word[2]))
有了这个,我会得到(左右对齐):
ID Value
123 10,00
1234 20,00
1 330,00
12345 1,00
我想这样:
ID Value
123 10,00
1234 20,00
1 330,00
12345 1,00
如何实现?我看了here并尝试{:30}'.format('test')
和{:>30}'.format('test')
进行了右对齐,但是第一个单词就不会保留30个位置。