I have a two different lists:
list_sequence = ['Example 64', 'Example 32', 'Example 16']
and
list = ['Example 128', 'Example 64', 'Example 32', 'Example 16', 'Example 256', 'Example 512', 'Example 1024']
I want to figure out, if the list_sequence is "in" the list.
Its important that the order of the list_sequence must be the same like in the list. (Maybe it would work with making the list an string?)