[Answer]-Django1.7 : 'list' object is not callable

1👍

You initialized a list named Key, and you also have a class named Key. Rename the Key variable in the first line in your Arrangement method to something else.

Your naming conventions is very confusing, by the way. Try to follow PEP8 or at least name your variables in lowercase.

👤Selcuk

Leave a comment