Try Passing \x00 characters in one long string to split it up into many
little strings. eg:

>>> lst = ['bacon', 'egg', 'ham']
>>> str = '\00'.join(lst)
>>> str
'bacon\x00egg\x00ham'
>>> str += '\00'
>>> str
'bacon\x00egg\x00ham\x00'
>>>




_______________________________________________
ActivePython mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Other options: http://listserv.ActiveState.com/mailman/listinfo/ActivePython

Reply via email to