RUVIDEO
Поделитесь видео 🙏

Coding 101 12: Lists[Python]

📁 Обучение 👁️ 17 📅 03.12.2023

Hosts: Fr. Robert Ballecer, SJ and Shannon Morse

Guest: Dale Chase

Welcome to Coding 101 - It's the TWiT show that gives YOU the knowledge to live in the wonderful world of the programmer. This week we are introducing our newest module, Python with Code Warrior Dale Chase!

Snubs Compiled

Recap how to download Python on your machine.
1. Go to: Python.org
2. Download Python 2.7.6 MSI Installer and Program Database.(This is important... 3.4.0 is NOT compatible with our lessons)

How to Open a script
1. You can download the ZIP file of all the Python programs on our github.
2. Double click the script to make it run.
3. Right click to edit in IDLE.
4. To start your own code: Open Notepad, write your code and save as a .py. OR, open IDLE, create a NEW FILE, write your code, then save it as a .py.

User Submissions
Benjamin's Asking Program
Santi Esco's Name and Age Script

To see all the code used in today's episode, go to Our Github Repository for Module 2

Ivory Tower

Structured Data in Python
* Data Structures are important because they allow us to not only store data, but to make correlations between sets of data.
* Correlated data is an important piece in being able to break down the world into a computer language

One of the most basic data structures in Python is the LIST
* A list is a sequence of variables connected to one another
* The Syntax for a list is:

"NameOfList = [value1, value2, value3, value4];
The name of your list = [values];"

To access the values contained within the list, you use the syntax:
"

NameOfList[index]
"

Where "index" is a number between 0 and the number of values in your list-1

Example:

c101 = ['PadreSJ', 'Snubs', 'Dale Chase', 'Cranky_Hippo'];

Will create a list named "c101" with entries 0-3 with the values of "PadreSJ", "Snubs", "Dale Chase", and "Cranky_Hippo"

If we wanted to access that list, we could write:

print ""The Following are members of the Coding 101 team:", c101[0], c101[1], c101[2], c101[3]"

I could also update the values in the list by using the name of the list and the index I want to change:

Example:
c101[3] = "Bryan Burnett"

Will change the value of the 4th element from "Cranky Hippo" to "Bryan Burnett"

Get in Touch With Us!

* Subscribe and get Coding 101 automatically at TWiT.tv!
* Follow PadreSJ and Snubs on Twitter.
* Watch the show live and join the chatroom every Thursday at 1:30pm PST.
* Email us at [email protected] and [email protected].
* Join our Google+ Community!

Download or subscribe to this show at twit.tv/code.

Running time: 41:31

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Coding 101 12: Lists[Python]», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.