<small id='fkdSu'></small><noframes id='fkdSu'>

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

    <bdo id='fkdSu'></bdo><ul id='fkdSu'></ul>
      1. <tfoot id='fkdSu'></tfoot>
      2. <legend id='fkdSu'><style id='fkdSu'><dir id='fkdSu'><q id='fkdSu'></q></dir></style></legend>

        将单个数字转换为单个数字 Python

        Turn a single number into single digits Python(将单个数字转换为单个数字 Python)
          <tbody id='ZIg1B'></tbody>
      3. <legend id='ZIg1B'><style id='ZIg1B'><dir id='ZIg1B'><q id='ZIg1B'></q></dir></style></legend>

          <small id='ZIg1B'></small><noframes id='ZIg1B'>

            <bdo id='ZIg1B'></bdo><ul id='ZIg1B'></ul>

            1. <i id='ZIg1B'><tr id='ZIg1B'><dt id='ZIg1B'><q id='ZIg1B'><span id='ZIg1B'><b id='ZIg1B'><form id='ZIg1B'><ins id='ZIg1B'></ins><ul id='ZIg1B'></ul><sub id='ZIg1B'></sub></form><legend id='ZIg1B'></legend><bdo id='ZIg1B'><pre id='ZIg1B'><center id='ZIg1B'></center></pre></bdo></b><th id='ZIg1B'></th></span></q></dt></tr></i><div id='ZIg1B'><tfoot id='ZIg1B'></tfoot><dl id='ZIg1B'><fieldset id='ZIg1B'></fieldset></dl></div>
                • <tfoot id='ZIg1B'></tfoot>
                • 本文介绍了将单个数字转换为单个数字 Python的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想将一个数字,例如 43365644 变成单个数字 [4,3,3....,4,4]

                  I want to make a number , for example 43365644 into single numbers [4,3,3....,4,4]

                  并将其附加到列表中

                  推荐答案

                  如果你这样做很容易:

                  1. 使用 str将数字转换为字符串,以便您可以对其进行迭代.

                  1. Use str to convert the number into a string so that you can iterate over it.

                  使用 列表理解 来拆分字符串转换成单个数字.

                  Use a list comprehension to split the string into individual digits.

                  使用 int将数字转换回整数.

                  Use int to convert the digits back into integers.

                  下面是一个演示:

                  >>> n = 43365644
                  >>> [int(d) for d in str(n)]
                  [4, 3, 3, 6, 5, 6, 4, 4]
                  >>>
                  

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

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

                  相关文档推荐

                  env: python: No such file or directory(env: python: 没有这样的文件或目录)
                  How to evaluate environment variables into a string in Python?(如何在 Python 中将环境变量评估为字符串?)
                  Python - temporarily modify the current process#39;s environment(Python - 临时修改当前进程的环境)
                  Change current process environment#39;s LD_LIBRARY_PATH(更改当前进程环境的 LD_LIBRARY_PATH)
                  Reading and writing environment variables in Python?(在 Python 中读写环境变量?)
                  When to use sys.path.append and when modifying %PYTHONPATH% is enough(何时使用 sys.path.append 以及何时修改 %PYTHONPATH% 就足够了)
                    <bdo id='xsTrb'></bdo><ul id='xsTrb'></ul>

                    • <tfoot id='xsTrb'></tfoot>

                        <small id='xsTrb'></small><noframes id='xsTrb'>

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

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