For Loop - Python for Absolute Beginners Course
In this Python for beginners tutorial we are going to learn the following:
How to create a for loop to iterate through the items of a list.
How to create a for loop to run a piece of code a specific number of times.
We will also solve a simple exercise.
One of the main things that make computers so powerful is that they can quickly do the same tasks or calculations over and over again. One way to tell a computer to do this is by using loops. A loop is a kind of programming expression that lets you run a section of code over and over again. Python has two types of main loops, just like other programming languages, for loops and while loops. For loops are the subject of today's video.
A FOR loop is a type of loop used to repeat a block of code a specific number of times. In most cases, we use for loops with LISTS when we know how many times, we need to repeat a piece of code.
For example, I have created a list of 5 delicious fruits and for every fruit, in the list, I want to print the fruit name and that is a delicious fruit like this:
Apple is a delicious fruit.
Plum is a delicious fruit.
And so on.
One way to do this is to use 5 print commands like this and use the list index to get every item from the list. That works for short lists, but what if my list has 1,000 items? I'd need two days to type all of the print commands. This is where the for loop comes in.
I delete all the print commands and I simply type:
for (that’s a word that tells the computer that we want to create a loop) fruit (that’s a variable we can call anything we want but since we work with a list of fruits, the name fruit is a descriptive name) in fruits (that’s the list we want to work with): colon
Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «For Loop - Python for Absolute Beginners Course», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.
Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.
Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!
Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.