码迷,mamicode.com
首页 > 编程语言 > 详细

python3 十六进制字符串进行分割并累加

时间:2019-03-21 17:19:27      阅读:443      评论:0      收藏:0      [点我收藏+]

标签:十六进制   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 != ‘‘]))

python3 十六进制字符串进行分割并累加

标签:十六进制   nbsp   idt   splay   str   bsp   height   isp   font   

原文地址:https://www.cnblogs.com/congyinew/p/10572833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!