I have Dictionary that I update time after time and the dictionary result get inserted to the wxListCtrl in report mode. The problem comes when I insert new data. It seems that the unicode character (u') is also get inserted as part of data. Is there any way to strip it out?
I wanted to doit with .strip("u") but I'm afraid it will strip all U's in my data. Is there a way out
Thanks all