借助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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。