有我的問題: 我試圖從一個Tkinter的文本控件得到所有的數字(GET是從一個文件中的文本)是這樣的:Python的錯誤:列表索引必須是整數,不是Unicode
text = self.text_field.get(1.0, 'end')
s = re.findall("\d+", text)
小號回報是這樣的:
[u'0', u'15', u'320', u'235', u'1', u'1', u'150', u'50', u'2', u'2', u'20']
比我嘗試添加標籤的文本組件:
for i in s: self.text_field.tag_add('%s', '5.0', '6.0') %s[i]
,並給出了一個錯誤:
list indices must be integers, not unicode
thanx的幫助我:)