RosettaCodeData/Task/CRC-32/Python/crc-32-1.py

9 lines
167 B
Python
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
>>> s = 'The quick brown fox jumps over the lazy dog'
2013-04-10 16:57:12 -07:00
>>> import zlib
2016-12-05 22:15:40 +01:00
>>> hex(zlib.crc32(s))
'0x414fa339'
>>> import binascii
>>> hex(binascii.crc32(s))
2013-04-10 16:57:12 -07:00
'0x414fa339'