将int转换为ASCII并返回Python [英] Convert int to ASCII and back in Python

查看:193
本文介绍了将int转换为ASCII并返回Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在为我的网站制作一个URL缩短器,而我目前的计划(我愿意接受建议)是使用节点ID来生成缩短的URL。因此,理论上,节点26可能是 short.com/z ,节点1可能是 short.com/a ,节点52可能是 short.com/Z ,节点104可能是 short.com/ZZ 。当用户访问该URL时,我需要反转该过程(显然)。

I'm working on making a URL shortener for my site, and my current plan (I'm open to suggestions) is to use a node ID to generate the shortened URL. So, in theory, node 26 might be short.com/z, node 1 might be short.com/a, node 52 might be short.com/Z, and node 104 might be short.com/ZZ. When a user goes to that URL, I need to reverse the process (obviously).

我可以想到一些方法可以解决这个问题,但我猜有更好的。有什么建议吗?

I can think of some kludgy ways to go about this, but I'm guessing there are better ones. Any suggestions?

推荐答案

ASCII到int:

ASCII to int:

ord('a')

给出 97

并返回字符串:

str(unichr(97))

给出'a'

这篇关于将int转换为ASCII并返回Python的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆