• <bdo id='ua3Rt'></bdo><ul id='ua3Rt'></ul>

      <tfoot id='ua3Rt'></tfoot>

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

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

        <legend id='ua3Rt'><style id='ua3Rt'><dir id='ua3Rt'><q id='ua3Rt'></q></dir></style></legend>
      1. Python字符串和整数连接

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

                <tbody id='ma362'></tbody>

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

                  本文介绍了Python字符串和整数连接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想在 for 循环中使用附加的整数创建字符串.像这样:

                  I want to create string using integer appended to it, in a for loop. Like this:

                  for i in range(1,11):
                    string="string"+i
                  

                  但是它返回一个错误:

                  TypeError: unsupported operand type(s) for +: 'int' and 'str'
                  

                  连接字符串和整数的最佳方法是什么?

                  What's the best way to concatenate the String and Integer?

                  推荐答案

                  注意:

                  此答案中使用的方法(反引号)在更高版本的 Python 2 中已弃用,并在 Python 3 中删除.使用 str() 函数.

                  你可以使用:

                  string = 'string'
                  for i in range(11):
                      string +=`i`
                  print string
                  

                  它将打印 string012345678910.

                  要获得 string0, string1 ..... string10 您可以按照@YOU 的建议使用它

                  To get string0, string1 ..... string10 you can use this as @YOU suggested

                  >>> string = "string"
                  >>> [string+`i` for i in range(11)]
                  


                  根据 Python3 更新

                  你可以使用:

                  string = 'string'
                  for i in range(11):
                      string +=str(i)
                  print string
                  

                  它将打印 string012345678910.

                  要获得 string0, string1 ..... string10 您可以按照@YOU 的建议使用它

                  To get string0, string1 ..... string10 you can use this as @YOU suggested

                  >>> string = "string"
                  >>> [string+str(i) for i in range(11)]
                  

                  这篇关于Python字符串和整数连接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:TypeError:无法将“int"对象隐式转换为str 下一篇:如何查找整数中的数字长度?

                  相关文章

                  最新文章

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

                      • <bdo id='gslyb'></bdo><ul id='gslyb'></ul>

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

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