TypeError: 'int' object is not iterable site:stackoverflow.com code example
Example: TypeError: 'int' object is not iterable
#If you have a variable that is a list
#and you attempt to perform an operation on it, it will error
a = [1]
#Instead, just remove the brackets
a = 1
a+=1