On May 24, 9:45 pm, [EMAIL PROTECTED] wrote:
> Can we have change a unicode string Type object  to a Tuple type
> object.. If so how ????

>>> x = u'fubar'
>>> y = tuple(x)
>>> y
(u'f', u'u', u'b', u'a', u'r')
>>> type(x)
<type 'unicode'>
>>> type(y)
<type 'tuple'>
>>>

But I'm quite sure that's not the question you should be asking :-)

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to