For Loops | Python | Tutorial 22

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, lists, tuples, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

Mike, I learnt SQL from you, now Python and will do the rest too. Thank you for being so simple, straight to the point and generous enough to make all of these free

bacet
Автор

Thanks sir i am grateful to have a teacher like you😊😊

mukeshsoni
Автор

This is the first lecture in this series that went straight over my head

simonriley.
Автор

I have been watching many python tutorials but this one is the best one to learn python as a beginner! Thanks, Mike for your hard work! I wish I could know this earlier!

gulzhanraiymbek
Автор

Bro love your ways of explaining it becomes more easy to understand thanks yiu again😊

kxqvwxb
Автор

Looping and iteration confuses the heck out of me. I never can wrap my head when you use a counter and then the iteration with assignments .... arrrg

westfield
Автор

Beautiful training it is! Thank you so much!

HIDlarissaTERRY
Автор

Had to watch this 3 times, while reading articles about this function, to somewhat wrap my head around it.
So Python understands that in a list of friends like in the video, a single item within that list would be a friend?
Does that only work with plurals that have an "s" at the end? How about nouns as list names that already have a "s" at the end in singular?

dirksesterhenn
Автор

nice video explanation for python function for loops :)

germainesoh
Автор

I thought for loops were a condensed way of writing while loops (like putting i = 1; i < 10; i++ all on the same line)... at least that's how it seemed in JS and C#. Does it not work the same way in python?

scottisitt
Автор

Why Karen is one of friends, but Pam's not?

blinamama
Автор

Friends = ["jim", "karen", "kevin"]

For index in Friends:
Print(index)

:- jim
Karen
Kevin
I made like this, , is this

emsheeranstudio