我有一个元组,它由一些整数元组和一些整数组成,比如((1, 2), 3, (4, 5), 6)
。现在我需要它的所有整数。我写:
def get_all_items(iterable):
t = []
for each in iterable:
if type(each) == int:
t.append(each)
else:
t.extend(each)
return tuple(t)
这个对我有用。有没有更好的方法来做到这一点?