예시 리스트
arr = ['a', 'b', 'c', 'd', 'e']
arr[start:end]
arr[start:end:step]
arr[1:5] # ['b', 'c', 'd', 'e'] arr[1:5:2] # ['b', 'd']
arr[::-1]