[docs]defiterate(x:Any):"""Return an iterator object for node of list, tuple, set, or dict."""ifnotisinstance(x,Node):x=node(x)ifissubclass(x.type,list)orissubclass(x.type,tuple)orissubclass(x.type,str):returnSeqIterable(x)elifissubclass(x.type,set):converted_list=ops.to_list(x)returnSeqIterable(converted_list)elifissubclass(x.type,dict):returnSeqIterable(x.keys())else:raw_traceback="TypeError: Cannot unpack non-iterable {} object".format(type(x._data))ex=TypeError(raw_traceback)e=ExceptionNode(ex,inputs=[x],info={"traceback":raw_traceback,},)raiseExecutionError(e)