Ask Your Question

Revision history [back]

Indeed, a tuple is not callable!

What does it mean... a tuple is a Python datastructure and you can use is at a function: if t is a tuple t() will not work

sage: t = (1,2)
sage: t()
Traceback (most recent call last):
...
TypeError: 'tuple' object is not callable

If you want help on your specific question you should provide details about what you did cut and paste...