> B='\x12','\x32'
> B[0]='\x12'
>
> I cannot get this to work,

"B" is a tuple, which means it can't be assigned to. Try this:
  B=['\x12','\x32']

-- 
  Do I know what's in this bill? Are you kidding? Only God knows...
      - U.S. Senator Robert Byrd, when asked if he knew the
        contents of a $520 billion, 4000-page spending bill


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

Reply via email to