[a for a in choices if a['id'] not in _list]
if all((
int(id) not in _list,
str(id) not in _list,
))
and
list_with_int_and_str = [1, '1', '2', 3, 5]
numbers = [1, 2, 3, 4, 5]
print([i for i in numbers if int(i) not in list_with_int_and_str and str(i) not in list_with_int_and_str])
# Out: [4]