abcd wrote: > I recently came across a problem where I saw this error: > "TypeError: unsubscriptable object" > > How can I determine if an object is "scriptable" or "unscriptable"? > Simplest answer is to use isinstance to see if it is a string, list, or tuple:
if isinstance(variable, (str, list, tuple)): . . . Now the problem is that this answer doesn't address the problem. Your code is attempting to do something to the wrong type of object/variable which is a logic problem. -Larry Bates -- http://mail.python.org/mailman/listinfo/python-list