【Python报错-02】解决Python中的join()函数报错 :sequence item 0: expected str instance, int found

1 报错内容:

TypeError: sequence item 0: expected str instance, int found。
TypeError: 序列项0:应为str实例,但找到list。
【Python报错-02】解决Python中的join()函数报错 :sequence item 0: expected str instance, int found_第1张图片
原代码如下:

str1 = '\n'
f = open('labels.txt', 'w')
f.write(str1.join(labels))		#这句话报错
f.close()

2 了解join()函数

语法:

str.join(sequence)
参数:

可连接对象:列表,元组,字符串,字典和集合(都得是字符串)

#参数
#sequence - 要连接的元素序列。比如:列表,元组,字符串,字典和集合
#str - 以什么来连接元素

3 解决办法

(1)根据错误提示,可知list中包含数字,所以不可以直接转换成字符串。要么直接修改列表内非字符串的元素,要么将列表内的元素全部转换为字符串元素。
(2)要么将列表内的元素全部转换为字符串元素,可利用map函数,可对列表内的每一个元素都进行操作。
【Python报错-02】解决Python中的join()函数报错 :sequence item 0: expected str instance, int found_第2张图片

你可能感兴趣的:(#,python中的报错处理,python,join()函数)