Python for Data Analysis: Lists

preview_player
Показать описание
This video covers the basics of lists in Python.

This is lesson 5 of a 30-part introduction to the Python programming language for data analysis and predictive modeling. Link to the code notebook below:

Python for Data Analysis: Lists

This guide does not assume any prior exposure to Python, programming or data science. It is intended for beginners with an interest in data science and those who might know other programming languages and would like to learn Python.

I will create the videos for this guide such that you should be able to learn a lot just watching on YouTube, but to get the most out of the guide, it is recommended that you create a Kaggle account so that you can copy and edit each lesson so that you can follow along and run code yourself.

Introduction to Python Playlist:

Link to the Python for Data Analysis written guide index page:

Рекомендации по теме
Комментарии
Автор

One of the most underrated python for data science channels. Please come back and post more.

jaemwangi
Автор

boss - you approach this in exactly the way that works for me, and this series is extremely helpful. Thanks take care

adamshenk
Автор

for direct str to list conversion in recent python version its showing < TypeError: 'str' object is not callable>

chandanascholar
Автор

okay, one small question from a beginner
a [ start:end] does not slice from index start to index end but rather to the index end-1, i.e end(th) element of the list.

example : c= [ 1, 2, 3, 4, 5, 6, 7, 8, 9]
print(c[0:2]) does not display [1, 2, 3] rather [1, 2].

Did i get something wrong or is this an error in the explanation?

kahnbiraj