Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

readme.md

AttributeError: 'tuple' object has no attribute 'append'

Reproduce

data = (1, 2)
data.append(3)

Error Message

AttributeError: 'tuple' object has no attribute 'append'

Fix

data = [1, 2]
data.append(3)

Reflection

Tried to use append on a tuple.

Reference