Lists in Python - #11

preview_player
Показать описание
How to use Lists in Python. In this video I'll teach you about Lists with Python. Python lists are a fundamental coding concept that you'll use every day of your coding life.

In this series I'll teach you to program with Python in 2019.

See My Python Playlist:

Subscribe to my channel:

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

Awesome info John. Thank you so much. I'm surprised there are not more views, likes, and comments.

DisgruntledVet
Автор

Hi, i have a list like this list = ["GHGH4GHGH", "SDSD5SDSD", "TZTZ6TZTZ"]
how can i change only the 4 in "GHGH4GHGH" to a 5 or the 6 in "TZTZ6TZTZ" to Z or something ?
i tried: list[0[4]] = "5" but that doesn't work :-(

-eckes-w.