1. 首页
  2. 数据库
  3. 其它
  4. Python任意字符串转16 32 64进制的方法

Python任意字符串转16 32 64进制的方法

上传者: 2020-12-31 19:26:13上传 PDF文件 35.83KB 热度 13次
Python字符串转数字 import binascii s = 'test123456test' str_16 = binascii.b2a_hex(s.encode('utf-8')) # 字符串转16进制 print(str_16) def baseN(num, b): return ((num == 0) and 0) or \ (baseN(num // b, b).lstrip(0) + 0123456789abcdefghijklmnopqrstuvwxyz[num % b]) num_10 = int(str_16,
用户评论