slice python 2 code example

Example 1: python slice

# array[start:stop:step]

# start = include everything STARTING AT this idx (inclusive)
# stop = include everything BEFORE this idx (exclusive)
# step = (can be ommitted) difference between each idx in the sequence

arr = ['a', 'b', 'c', 'd', 'e']

arr[2:] => ['c', 'd', 'e']

arr[:4] => ['a', 'b', 'c', 'd']

arr[2:4] => ['c', 'd']

arr[0:5:2] => ['a', 'c', 'e']

arr[:] => makes copy of arr

Example 2: python slice operator

string = 'string_text'

beginning = 0 # at what index the slice should start.
end = len(string) # at what index the slice should end.
step = 1 # how many characters the slice should go forward after each letter

new_string = string[beginning:end:step]

# some examples
a = 0
b = 3
c = 1

new_string = string[a:b:c] # will give you: str
# ____________________________________________
a = 2
b = len(string) - 2
c = 1

new_string = string[a:b:c] # will give you: ring_te

Example 3: string slicing in python 3 arguments

#[start:end:step]
>>> range(10)[::2]
[0, 2, 4, 6, 8]