I have a list with 6899 numbers, from wich I have to create a new list containing only te terms from i=3200 to i=4121. Kind of like a copy and paste.
I tried the following:
e = a[3200<i<4121]
Being "e" the new list and "a" the original one, but this code returns a float, instead of a new list, any hints?