Open tonyx54 opened 4 years ago
https://nbviewer.jupyter.org/github/jmportilla/Complete-Python-Bootcamp/blob/master/Tuples.ipynb
Correction t[0:3] to get 'one'
is this issue still open?
There's nothing wrong with it. If we do t[0:3], then the entire list will get printed.
https://nbviewer.jupyter.org/github/jmportilla/Complete-Python-Bootcamp/blob/master/Tuples.ipynb
In [4}: # Use indexing just like we did in lists t[0] Out 4: 'one'
Correction t[0:3] to get 'one'