标签:十六进制 nbsp idt splay str bsp height isp font
最近忘性大,记录一下
需求: ‘80 11 F1 01 1A’字符串需要把每一个十六进制字符加起来,即80+11+F1+01+1A=?
很简单,不解释,直接上
import re
hex(sum([int(i,16) for i in re.split(‘ ‘, ‘80 11 F1 01 1A‘) if i != ‘‘]))
标签:十六进制 nbsp idt splay str bsp height isp font
原文地址:https://www.cnblogs.com/congyinew/p/10572833.html