If I have this:
a=\'abcdefghij\' b=\'de\'
Then this finds b in a:
b in a => True
Is there a way of doi
>>>''.join(b) in ''.join(a) True