Need help with this list comprehension...
Here is my code:
w1_comb_l1=[n1, pos_pred_list[0], [i for i in pos_days_w1]]
That comprehension gives this output: [209, 49684, [9351, 9346, 8103, 7676, 8739, 3925, 2544]]
.
I need help getting those values that are in inner brackets out, therefore, here is desired output: [209, 49684, 9351, 9346, 8103, 7676, 8739, 3925, 2544]
- without inner list
It is probably a small fix.