list.extend()
if the element is a list, list.append()
otherwise.def spread(arg): ret = [] for i in arg: ret.extend(i) if isinstance(i, list) else ret.append(i) return ret
spread([1, 2, 3, [4, 5, 6], [7], 8, 9]) # [1, 2, 3, 4, 5, 6, 7, 8, 9]
Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️