Skip to content

pyhton_basics.ipynb typo 5

# Get a slice form index 2 to 4 (exclusive); prints "[2, 3]"
print(nums[2:4])

from