网页浏览总次数

2020年7月3日星期五

在python中使用php里的crc32b。

不说废话,直接上代码:
from zlib import crc32
def crc32b():
	return str(hex(crc32(str(i).encode('utf8'))))[2:]
字符串编码方式根据情况自行修改。
2020/07/python-crc32b.html