当前位置: 代码迷 >> 综合 >> AttributeError: ‘list‘ object has no attribute ‘strip‘、‘split‘
  详细解决方案

AttributeError: ‘list‘ object has no attribute ‘strip‘、‘split‘

热度:87   发布时间:2023-11-27 21:36:56.0

 

 原因:

strip()、split()方法作用对象是一个字符串,使用时要注意自己处理的或之前用方法生成的是列表,集合,还是其他的什么,只要最后能转变成字符串就能用split()、strip()方法

解决办法:

把列表变成字符串

a = ['1','2','3']
# 把列表变成字符串
a = ' '.join(a)
print(a.split(' '))

  相关解决方案