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

报错原因:

student_list = [1, 2, 3, 4, 5]

使用" ".join(student_list)时,student_list中的元素都为整数。

 

解决方法:

将student_list中的元素都变为str类型

list(map(str, student_list))

 

关于map函数,跳转:https://www.cnblogs.com/mlllily/p/18069296

 

posted on 2024-03-12 19:26  mlllily  阅读(48)  评论(0编辑  收藏  举报