5330 shaares
5 private links
5 private links
2 results
tagged
list
def epluchelist(x):
if type(x) is list:
return epluchelist(x[0])
else:
return x