Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. stipey75

    Binary string

    ok so \001 is a byte and every number between backslash is a byte. I' ve made so to solve the problem: ##FOR A BYTE############### def GET_BYTE(Buffer): global ind Byte = ord(Buffer[ind]) ind = ind + 1 return Byte ########################### ######FOR A WORD########### def...
  2. stipey75

    Binary string

    I am implementing a client server program. Client side is written in C++ it sends to a phyton server packets. For example the phyton buffer receive: datarecv = 'i\001\017\000\001\000\334\005...' Where every part between backslash is a byte. My problem is to make phyton understand as a...

Part and Inventory Search

Back
Top