Python 2. def flatten(l): for el in l: if isinstance(el, collections.Iterable) and not isinstance(el, basestring): ...
確定! 回上一頁