How to Slice Lists/Arrays and Tuples in Python

So you’ve got an list, tuple or array and you want to get specific sets of sub-elements from it, without any long, drawn out for loops? Python has an amazing feature just for that called slicing. Slicing can not only be used for lists, tuples or arrays, but custom data structures as well, with the … Continue reading How to Slice Lists/Arrays and Tuples in Python