Python的內置模塊struct學習筆記

python處理二進制數據時可以使用python的struct模塊。 struct模塊中最重要的三個函數是pack(), unpack(), calcsize(): pack(fmt, v1, v2, ...)     按照給定的格式(fmt),返回一個包裝後的字符串。 unpack(fmt, string)       按照給定的格式(fmt)解析字節流string,返回一個解析出來的tuple
相關文章
相關標籤/搜索