[EMAIL PROTECTED] wrote:
> ok, part of what i have to do is know how many bytes will be sent. in
> ascii is it one byte per character ?
> like "password" would be 8 bytes long?

Yes, but when someone says ASCII STX, they usually mean
the single byte control character. This is a non-printable character
that you can create with chr(2). And ETX would be chr(3) (as
mentioned by DLB, there is no such thing as ASCII ENX).

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

Reply via email to