# coding: utf-8
def some_list_to_one(the_list):
result = list()
for d in the_list:
if type(d) == list:
result += some_list_to_one(d)
else:
result.append(d)
return result
if __name__ == "__main__":
a = [1, [2, [5, [7, 8], 6], 3], 4]
print some_list_to_one(a)