zoukankan      html  css  js  c++  java
  • Python之路——struct模块

    struct模块

    # struct 模块 用来将数字字符串等转换成固定长度的字节
    # format:
    # x: pad byte (no data); c:char; b:signed byte; B:unsigned byte;
    #   ?: _Bool (requires C99; if not available, char is used instead)
    #   h:short; H:unsigned short; i:int; I:unsigned int;
    #   l:long; L:unsigned long; f:float; d:double.
    # Special cases (preceding decimal count indicates length):
    #   s:string (array of char); p: pascal string (with count byte).
    # Special cases (only available in native format):
    #   n:ssize_t; N:size_t;
    #   P:an integer type that is wide enough to hold a pointer.
    # Special case (not in native mode unless 'long long' in platform C):
    #   q:long long; Q:unsigned long long
    import struct
    # a = struct.pack('i',4658)   # 'i' 模式转换成4个字节
    # print(a,len(a)) # b'2x12x00x00' 4
    # b = struct.unpack('i',a)
    # print(b)    # (4658,)
    # print(b[0]) # unpack后的数据是一个元组
    
    # a = struct.pack('f',5641564987)
    # print(a,len(a)) # b'2x12x00x00' 4
    # b = struct.unpack('f',a)
    # print(b)    # (4658,)
    # print(b[0]) # unpack后的数据是一个元组
    # # 输出
    # # b'xba!xa8O' 4
    # # (5641565184.0,)
    # # 5641565184.0
  • 相关阅读:
    英语四级day1
    Hadoop实战
    Red Hat
    SQL Cookbook
    Java改错学习法
    Java程序设计经典300例
    Git
    ColorOS和MIUI双系统安装笔记
    深入浅出MySQL数据库开发、优化于管理维护
    剑指Offer名企面试官精讲典型编程题
  • 原文地址:https://www.cnblogs.com/liuyankui163/p/8376593.html
Copyright © 2011-2022 走看看