def get_plus(x,y):
return str(x) + y
seq_x = [1, 2, 3, 4]
seq_y = 'abc'
print([get_plus(x,y) for x in seq_x for y in seq_y])
#result // ['1a', '1b', '1c', '2a', '2b', '2c', '3a', '3b', '3c', '4a', '4b', '4c']
but, I'd like to make result like this
#result // ['1a', '2b', '3c']
how can I do that?