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