The error says the list is not callable because you are trying to access/use a python list but using parenthesis for it. Parenthesis are used to call a function and because a list is not a function, you get this error. To access/use a python list, you should use square brackets. Try this:
print worldlists[len(words)]
Hope this helps!!
If you need to know more about Python, join Python certification course today.
Thanks!