Si eliminas ambos números y permanecen los dos puntos, la lista se copiará..
mylist = ['one', 'two', 'three', 'four', 'five']
print(mylist[1:3])
print(mylist[1:])
print(mylist[:3])
print(mylist[:])
El resultado del código anterior será:
['two', 'three']
['two', 'three', 'four', 'five']
['one', 'two', 'three']
['one', 'two', 'three', 'four', 'five']
- 1 more item...