TypeError: sequence item 0: expected str instance, int found

Posted Alex Hub

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TypeError: sequence item 0: expected str instance, int found相关的知识,希望对你有一定的参考价值。

背景:想要将一个纯数字的列表转换为一个数字字符串。

''.join(nums)

结果报错:

TypeError: sequence item 0: expected str instance, int found

才想起来,想要拼接的话得是字符串类型,转换一下。

''.join(map(str, nums))

以上是关于TypeError: sequence item 0: expected str instance, int found的主要内容,如果未能解决你的问题,请参考以下文章

python报错:TypeError: sequence item 0: expected str instance, int found

argument 1 must be 2-item sequence, not int

UVM序列篇之二:sequence和item(上)

uvm模型中get不同时序的item怎么实现

TypeError:无法腌制 dict_items 对象

python3错误之TypeError: 'dict_items' object is not callable