将 int 转换为 ASCII 并返回 Python

Convert int to ASCII and back in Python(将 int 转换为 ASCII 并返回 Python)
本文介绍了将 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

然后返回一个字符串:

  • 在 Python2 中:str(unichr(97))
  • 在 Python3 中:chr(97)

给出'a'

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

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

build conda package from local python package(从本地 python 包构建 conda 包)
How can I see all packages that depend on a certain package with PIP?(如何使用 PIP 查看依赖于某个包的所有包?)
How to organize multiple python files into a single module without it behaving like a package?(如何将多个 python 文件组织到一个模块中而不像一个包一样?)
Check if requirements are up to date(检查要求是否是最新的)
How to upload new versions of project to PyPI with twine?(如何使用 twine 将新版本的项目上传到 PyPI?)
Why #egg=foo when pip-installing from git repo(为什么从 git repo 进行 pip 安装时 #egg=foo)