リストのリストがある場所でこのコードを実行しようとしています。内部リストに追加する必要がありますが、エラーが発生します
TypeError: 'list' object is not callable.
ここで何が間違っているのか誰にも教えてもらえますか。
def createlists():
global maxchar
global minchar
global worddict
global wordlists
for i in range(minchar, maxchar + 1):
wordlists.insert(i, list())
#add data to list now
for words in worddict.keys():
print words
print wordlists(len(words)) # <--- Error here.
(wordlists(len(words))).append(words) # <-- Error here too
print "adding word " + words + " at " + str(wordlists(len(words)))
print wordlists(5)