Pierian-Data / Complete-Python-3-Bootcamp

Course Files for Complete Python 3 Bootcamp Course on Udemy
27.56k stars 85.42k forks source link

incorrect string/code #167

Open tonyx54 opened 4 years ago

tonyx54 commented 4 years ago

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'

EkanshMangal commented 4 years ago

is this issue still open?

KshitijSangar217 commented 4 years ago

Correction t[0:3] to get 'one'

There's nothing wrong with it. If we do t[0:3], then the entire list will get printed.