I have a tuple: ('a',1)
When I use wx.StaticText to show it, it is always displayed like this: ('a',1)
How do I make it display like this: (a,1) ?
Note: It has to be a tuple. For some reason when I set a string to be a tuple it is always recorded along with the quotes. So:
a = (str(hello),1)
And if you print a you get:
>>>print a
('hello',1)
Instead of passing the tuple object directly, pass a string formatted:
Using
%
operator:Using
str.format
: