Currently I have a list that I have read from a file and it looks similar to...
file = [S,D,S,D,S,D,N,S,D,S,D,N]
What I was wondering is there a way to loop through the list so that I get multiple lists.
For Example....
List1 = [S,D,S,D,S,D,N]
List2 = [S,D,S,D,N]
If someone could help it would be great!
Thanks