标题:python 2 CRC校验程序
只看楼主
chaw899
Rank: 2
等 级:禁止访问
帖 子:48
专家分:11
注 册:2018-11-29
结帖率:88.89%
已结贴  问题点数:2 回复次数:1 
python 2 CRC校验程序
from zlib import crc32
import os
import sys
import re

def getCrc32(filename):
        with open(filename, 'rb') as f:
                return crc32(f.read())&0xffffffff
checksum=getCrc32(sys.argv[1])
print ('%X' %checksum)
print str(hex(checksum)).upper()
# 第二个输出,如何用正则的方法去掉0X和后面的L


运行结果如下:
python crc32.py 001.sgf
669A22FF
0X669A22FFL

搜索更多相关主题的帖子: python CRC 校验 import print 
2019-07-07 17:29
lwy2xxj
Rank: 5Rank: 5
等 级:贵宾
威 望:16
帖 子:36
专家分:148
注 册:2019-4-8
得分:2 
a=0X669A22FFL
hex(a).upper().split('0X')[1].split('L')[0]
2019-07-08 17:33



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-495732-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.175621 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved