【无标题】Python爬虫:AttributeError: ‘tuple’ object has no attribute ‘append’

【无标题】Python爬虫:AttributeError: ‘tuple’ object has no attribute ‘append’,第1张

项目场景:

向列表中添加元素


问题描述

出现错误:AttributeError: ‘tuple’ object has no attribute ‘append’

 TEXT = ()
 #表头
 for th in table.select('th'):
     header = th.text
     TEXT.append(header)
 print(TEXT)

原因分析:

元组不可添加,说明TEXT是元组类型。
往前找发现设置TEXT空白列表时写错了,应该写成TEXT = []


解决方案:

TEXT = ()修改为TEXT = []

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/870644.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存