I cannot believe that this doesn't work. I guess I am missing something fundamental. I am trying to make a list of tuples:
newtags = []
print newtags
newtags = newtags.append(('{','JJ'))
print newtags
output is:
[]
None
I should be getting a list of tuples instead.