1. <small id='XvT4O'></small><noframes id='XvT4O'>

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

        在 Python 中用一个字符串和一个整数创建一个字符串

        Making a string out of a string and an integer in Python(在 Python 中用一个字符串和一个整数创建一个字符串)

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

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

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

                <tbody id='bfKCf'></tbody>
              • <tfoot id='bfKCf'></tfoot>

                1. 本文介绍了在 Python 中用一个字符串和一个整数创建一个字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我在尝试获取一个整数并在其前面加上b"并将其转换为字符串时收到此错误:

                  I get this error when trying to take an integer and prepend "b" to it, converting it into a string:

                    File "program.py", line 19, in getname
                      name = "b" + num
                  TypeError: Can't convert 'int' object to str implicitly
                  

                  这和这个功能有关:

                  num = random.randint(1,25)
                  name = "b" + num
                  

                  推荐答案

                  name = 'b' + str(num)
                  

                  name = 'b%s' % num
                  

                  正如 S.Lott 所指出的,混合运算符 '%' 在 Python 3 及更高版本中已弃用.我从 INTERCAL 偷了混合"这个名字,但这就是我谈论它的方式想要至少在印刷版中看到它一次 - 就像渡渡鸟一样 - 它从地球上消失了.

                  as S.Lott notes, the mingle operator '%' is deprecated for Python 3 and up. And I stole the name "mingle" from INTERCAL but that's how I talk about it and wanted to see it in print at least once before - like the dodo - it vanishes from the face of the earth.

                  这篇关于在 Python 中用一个字符串和一个整数创建一个字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
                      <tbody id='VNfk5'></tbody>

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

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

                          <legend id='VNfk5'><style id='VNfk5'><dir id='VNfk5'><q id='VNfk5'></q></dir></style></legend>

                            <tfoot id='VNfk5'></tfoot>