<bdo id='4MquS'></bdo><ul id='4MquS'></ul>

    1. <legend id='4MquS'><style id='4MquS'><dir id='4MquS'><q id='4MquS'></q></dir></style></legend>

      <i id='4MquS'><tr id='4MquS'><dt id='4MquS'><q id='4MquS'><span id='4MquS'><b id='4MquS'><form id='4MquS'><ins id='4MquS'></ins><ul id='4MquS'></ul><sub id='4MquS'></sub></form><legend id='4MquS'></legend><bdo id='4MquS'><pre id='4MquS'><center id='4MquS'></center></pre></bdo></b><th id='4MquS'></th></span></q></dt></tr></i><div id='4MquS'><tfoot id='4MquS'></tfoot><dl id='4MquS'><fieldset id='4MquS'></fieldset></dl></div>
      <tfoot id='4MquS'></tfoot>
    2. <small id='4MquS'></small><noframes id='4MquS'>

    3. 将 int 转换为 ASCII 并返回 Python

      时间:2023-09-11
    4. <i id='r08io'><tr id='r08io'><dt id='r08io'><q id='r08io'><span id='r08io'><b id='r08io'><form id='r08io'><ins id='r08io'></ins><ul id='r08io'></ul><sub id='r08io'></sub></form><legend id='r08io'></legend><bdo id='r08io'><pre id='r08io'><center id='r08io'></center></pre></bdo></b><th id='r08io'></th></span></q></dt></tr></i><div id='r08io'><tfoot id='r08io'></tfoot><dl id='r08io'><fieldset id='r08io'></fieldset></dl></div>
      <tfoot id='r08io'></tfoot>
      <legend id='r08io'><style id='r08io'><dir id='r08io'><q id='r08io'></q></dir></style></legend>

            <tbody id='r08io'></tbody>

          • <small id='r08io'></small><noframes id='r08io'>

              • <bdo id='r08io'></bdo><ul id='r08io'></ul>
              • 本文介绍了将 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何在 Python 中检查字符串中是否包含数值? 下一篇:将列表或单个整数作为参数处理

                相关文章

                最新文章

                1. <small id='3af6L'></small><noframes id='3af6L'>

                2. <legend id='3af6L'><style id='3af6L'><dir id='3af6L'><q id='3af6L'></q></dir></style></legend>

                      <bdo id='3af6L'></bdo><ul id='3af6L'></ul>
                  1. <i id='3af6L'><tr id='3af6L'><dt id='3af6L'><q id='3af6L'><span id='3af6L'><b id='3af6L'><form id='3af6L'><ins id='3af6L'></ins><ul id='3af6L'></ul><sub id='3af6L'></sub></form><legend id='3af6L'></legend><bdo id='3af6L'><pre id='3af6L'><center id='3af6L'></center></pre></bdo></b><th id='3af6L'></th></span></q></dt></tr></i><div id='3af6L'><tfoot id='3af6L'></tfoot><dl id='3af6L'><fieldset id='3af6L'></fieldset></dl></div>
                  2. <tfoot id='3af6L'></tfoot>