将 int 转换为 ASCII 并返回 Python
- 作者: 法拉利集团亚洲分区总裁
- 来源: 51数据库
- 2023-01-30
问题描述
我正在为我的网站制作 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
然后返回一个字符串:
- 在 Python2 中:str(unichr(97))
- 在 Python3 中:chr(97)
给出'a'
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
