On 2005-01-18, tertius <[EMAIL PROTECTED]> wrote:

> Is there a builtin function that will enable me to display the hex 
> notation of a given binary string? (example below)

' '.join('%02x' % ord(b) for b in s)

-- 
Grant Edwards                   grante             Yow!  This is a NO-FRILLS
                                  at               flight -- hold th' CANADIAN
                               visi.com            BACON!!
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to