我正在使用wxpython来构建GUI。我正在使用wx.TxtCtrl和wx.TreeCtrl,当用户在wx.TxtCtrl中搜索时,我需要获取该值并将其与wx.TreeCtrl ItemText进行比较以获取搜索的项目,但是当我比较它们时,它不会实现了。 当我打印它们以检查它们是否打印相同的东西时,它们会这样做但是如何比较它们是真实的。请帮帮我。谢谢。我附上了示例代码:
selectedtext = self.search.GetValue()
while child:
(grandchild, childcookie) = self.tree.GetFirstChild(child)
grandchildText = self.tree.GetItemText(grandchild)
if selectedtext == grandchildText: # this is wrong, tell me correct pleases
self.FinalButtonText = selectedtext
print selectedtext