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

python3 短网址和数字的相互转换的代码

时间:2019-03-27 10:58:48      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:har   lse   import   floor   convert   bcd   find   abc   return   

下面内容是关于python3 短网址和数字的相互转换的内容。

import math
import decimal

def convert_to_code(num):
"""
将数字转换为代码
"""
def get_num(num, out=‘‘):
num = decimal.Decimal(num)
codes = "abcdefghjkmnpqrstuvwxyz23456789ABCDEFGHJKMNPQRSTUVWXYZ"
if num > 53:
key = num % 54
num = math.floor(num / 54) - 1
return get_num(num, codes[int(key)] + out)
else:
return codes[int(num)] + out
return get_num(num)


def convert_to_num(code):
"""
将代码转为数字
"""
import math
codes = "abcdefghjkmnpqrstuvwxyz23456789ABCDEFGHJKMNPQRSTUVWXYZ"
num = 0
num = decimal.Decimal(num)
i = len(code)
for char in code:
i -= 1
pos = codes.find(char)
num -= 1
# 任意数的 0 次方等于1,所以需要减去
return int(num)




 

python3 短网址和数字的相互转换的代码

标签:har   lse   import   floor   convert   bcd   find   abc   return   

原文地址:https://www.cnblogs.com/lpyg/p/10605599.html

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