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

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

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

      + 不支持的操作数类型:“int"和“str"

      时间:2023-09-11
        <tbody id='9mUIP'></tbody>

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

              1. <legend id='9mUIP'><style id='9mUIP'><dir id='9mUIP'><q id='9mUIP'></q></dir></style></legend>
              2. <small id='9mUIP'></small><noframes id='9mUIP'>

                本文介绍了+ 不支持的操作数类型:“int"和“str"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我目前正在学习 Python,所以我不知道发生了什么.

                I am currently learning Python so I have no idea what is going on.

                num1 = int(input("What is your first number? "))
                num2 = int(input("What is your second number? "))
                num3 = int(input("What is your third number? "))
                numlist = [num1, num2, num3]
                print(numlist)
                print("Now I will remove the 3rd number")
                print(numlist.pop(2) + " has been removed")
                print("The list now looks like " + str(numlist))
                

                当我运行程序时,输入 num1、num2 和 num3 的数字,它会返回:Traceback(最近一次调用最后一次):

                When I run the program, entering in numbers for num1, num2 and num3, it returns this: Traceback (most recent call last):

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

                推荐答案

                你试图连接一个字符串和一个整数,这是不正确的.

                You're trying to concatenate a string and an integer, which is incorrect.

                print(numlist.pop(2)+" has been removed") 更改为以下任何一项:

                Change print(numlist.pop(2)+" has been removed") to any of these:

                显式 intstr 转换:

                print(str(numlist.pop(2)) + " has been removed")
                

                使用 , 代替 +:

                print(numlist.pop(2), "has been removed")
                

                字符串格式:

                print("{} has been removed".format(numlist.pop(2)))
                

                这篇关于+ 不支持的操作数类型:“int"和“str"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何从 Python 中的字符串中获取整数值? 下一篇:有没有办法获得可以在 Python 中使用的最大整数

                相关文章

                最新文章

                1. <tfoot id='VOGPZ'></tfoot>

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

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

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