unsupported operand type(s) for /: 'list' and 'float'
时间: 2023-08-05 13:03:17 浏览: 308
解决uiautomatorviewer.bat在android8.0及以上系统报错
5星 · 资源好评率100%
根据提供的引用内容,我们可以看到这是一个关于数据类型的错误。在引用\[1\]中,我们可以看到在执行`print(num_int+num_str)`时出现了`TypeError: unsupported operand type(s) for +: 'int' and 'str'`的错误。这是因为`num_int`是一个整数类型,而`num_str`是一个字符串类型,它们的数据类型不兼容,无法进行加法操作。
在引用\[2\]中,我们可以看到`num_int`是一个整数类型,`num_flo`是一个浮点数类型,它们的数据类型是兼容的。并且在`num_new`的赋值语句中,我们可以看到`num_new`的值为124.23,它的数据类型是浮点数类型。
在引用\[3\]中,我们可以看到`num_int`的值为123,它的数据类型是整数类型。`num_str`的值为"456",它的数据类型是字符串类型。在执行`print(num_int+num_str)`时,同样出现了`TypeError: unsupported operand type(s) for +: 'int' and 'str'`的错误。
根据提供的问题"unsupported operand type(s) for /: 'list' and 'float'",我们可以看到这是一个关于除法操作的错误。具体来说,这个错误是由于一个列表类型和一个浮点数类型之间的除法操作引起的。根据提供的引用内容,我们没有找到与这个错误直接相关的信息。
综上所述,根据提供的引用内容,我们可以得出结论:在执行除法操作时,不支持列表类型和浮点数类型之间的操作。
#### 引用[.reference_title]
- *1* *2* *3* [【Python学习笔记】8. Python3 数据类型转换与推导式](https://blog.csdn.net/qq_62052372/article/details/128815379)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文