I receive a list of numbers and I want to sort them. the input looks like this:
i:1,3,5,8
n:2
t:4,7
a:6
v:9
and comes in form of a txt file.
The code looks like this:
flat_list = [item for sublist in decks for item in sublist]
p = []
for x in range(len(flat_list)):
nr = flat_list[x][0]
o = nr -1
p.insert((o),(flat_list[x][1]))
print(p)
which gives this output:
[(1, 'i'), (2, 'n'), (3, 'i'), (4, 't'), (5, 'i'), (6, 'a'), (8, 'i'), (7,
't'), (9, 'v')]
which is almost what I want, it except for 7 and 8. so what do I do wrong ?
You declare an empty list:
But you call
list.insert
on it. This, unfortunately, leads to some unintended side effects. Observe:Which is inserted at the 0th position, despite the fact that you wanted it in the (999 + 1)th place. This sort of thing is the reason you see items in the wrong place, they were never inserted properly to begin with.
The fix would be to multiply a
[None]
list. Also, you should be able to simplify your insertion logic drastically, if you iterate over the elements rather than their indices.