In my Python application, I have the following lines:
JavaScript
x
4
1
for index, codec in enumerate(codecs):
2
for audio in filter(lambda x: x['hls']['codec_name'] == codec, job['audio']):
3
audio['hls']['group_id'].append(index)
4
How can I only trigger the append
statement if the index hasn’t been already appended previously?
Advertisement
Answer
Simply test if
your index not in
your list:
JavaScript
1
5
1
for index, codec in enumerate(codecs):
2
for audio in filter(lambda x: x['hls']['codec_name'] == codec, job['audio']):
3
if index not in audio['hls']['group_id']:
4
audio['hls']['group_id'].append(index)
5