So, I'm trying to append to one list the reverse of a subset of another list. For some reason, the interpreter doesn't seem to be liking it. Here's what I'm doing.
list1.extend(list2[someInt:someOtherInt].reverse())
Why is this not legit? It seems reasonable to me..