当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python zlib.crc32()用法及代码示例


借助zlib.crc32()方法,我们可以为特定数据计算crc32(循环冗余校验)的校验和。它将通过使用给出32位整数值zlib.crc32()方法。

用法: zlib.crc32(s)
返回:Return the unsigned 32-bit checksum integer.

范例1:
在这个例子中,我们可以通过使用zlib.crc32()方法,我们可以使用此方法计算给定数据的无符号32位校验和。



# import zlib and crc32 
import zlib 
  
s = b'I love python, Hello world'
# using zlib.crc32() method 
t = zlib.crc32(s) 
  
print(t)

输出:

2185029202

范例2:

# import zlib and crc32 
import zlib 
  
s = b'Hello GeeksForGeeks'
# using zlib.crc32() method 
t = zlib.crc32(s) 
  
print(t)

输出:

3165518624




相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 zlib.crc32() in python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。