对于小结构大小,我在python 2.7中使用命名元组和struct.pack,就像这样
format_="i"
namedtuple("connections","number")
connection(number=0)
struct.pack(format_, *connection_tuple)
现在我必须构建具有结构内部结构的更大结构,我们可以通过struct.pack来做,但是有没有其他方法可以形成大的结构数据?