类型错误:** 或 pow() 不支持的操作数类型:'str' 和 'int'
Posted
技术标签:
【中文标题】类型错误:** 或 pow() 不支持的操作数类型:\'str\' 和 \'int\'【英文标题】:TypeError: unsupported operand type(s) for ** or pow(): 'str' and 'int'类型错误:** 或 pow() 不支持的操作数类型:'str' 和 'int' 【发布时间】:2018-02-05 06:30:32 【问题描述】:mixed = [1, 4, 'd']
if type(i) == int:
for i in mixed:
print([i ** 2])
【问题讨论】:
你忘了问问题。 【参考方案1】:我猜你想做的是:
mixed = [1,4,'d']
for i in mixed:
if type(i) == int:
print([i ** 2])
【讨论】:
以上是关于类型错误:** 或 pow() 不支持的操作数类型:'str' 和 'int'的主要内容,如果未能解决你的问题,请参考以下文章
Keras 报告类型错误:+ 的不支持的操作数类型:'NoneType' 和 'int'