用法:
Packer.pack_list(list, pack_item)
包装
list
的同类物品。此方法对于大小不确定的列表很有用;即在整个列表走完之前,大小不可用。对于列表中的每一项,首先打包一个无符号整数1
,然后是列表中的数据值。pack_item
是调用以打包单个项目的函数。在列表的末尾,一个无符号整数0
被打包。例如,要打包一个整数列表,代码可能如下所示:
import xdrlib p = xdrlib.Packer() p.pack_list([1, 2, 3], p.pack_int)
相关用法
- Python xml.etree.ElementTree.XMLParser用法及代码示例
- Python xml.etree.ElementTree.Element用法及代码示例
- Python xml.parsers.expat.ExpatError.code用法及代码示例
- Python xml.parsers.expat.ParserCreate用法及代码示例
- Python xml.dom.pulldom.DOMEventStream.expandNode用法及代码示例
- Python xml.etree.ElementTree.canonicalize用法及代码示例
- Python torch.distributed.rpc.rpc_async用法及代码示例
- Python torch.nn.InstanceNorm3d用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python pandas.arrays.IntervalArray.is_empty用法及代码示例
- Python tf.compat.v1.distributions.Multinomial.stddev用法及代码示例
- Python numpy.less()用法及代码示例
- Python tf.compat.v1.distribute.MirroredStrategy.experimental_distribute_dataset用法及代码示例
- Python Sympy Permutation.list()用法及代码示例
- Python dask.dataframe.Series.apply用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python pyspark.pandas.Series.dropna用法及代码示例
- Python torchaudio.transforms.Fade用法及代码示例
- Python dask.dataframe.to_records用法及代码示例
- Python pyspark.pandas.groupby.SeriesGroupBy.unique用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 xdrlib.Packer.pack_list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。