I am looking for the following:
dna = '**atg**abcdefghijk**tga**aa'
start = 'atg'
stop = 'tag' or 'taa' or 'tga'
I would like to get all the characters between start and stop. I have tried with:
print (dna.find(start:stop))
but it keeps me saying that the ":" are invalid syntax.