Introduction to For Loops in Python (Python Tutorial #5)

preview_player
Показать описание
For loops Python tutorial.

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

total4 = 0
for item in range(1, 100):
if item % 3 == 0 or item % 5 == 0:
total4 += item

print(total4)

2318

These videos are a lot better than my lecturer thank you! :)

shuttershocker
Автор

Please don't stop what you're doing. You're a great teacher!

kasperderej
Автор

The level of satisfaction I get when I end up one of your videos achieving the same results on my own, is epic.
Great tutorial, keep it going!

luuchoo
Автор

total = 0
for i in range(1, 100):
if i % 3 == 0 or i % 5 ==0:
total += i
print (total)
Thanks, CSDojo, I love your explanation and homework.

ginethespinosa
Автор

who else is loving this series on quarantine

FootnotesToPlato
Автор

Taught me more in ten minutes than 3 of my hour python lessons.

sedvlintsax
Автор

IT FEELS SO GOOD WHEN YOU UNDERSTAND THE CONCEPT... I loved your explanation and it was so understandable. I have gone through so many videos and even in different languages (As I am from India, We have many languages) but your explanation was great, I just regret why I did not found you at first. I really appreciate your work and I am gonna share it with all my known friends. Thank you very much

rakshitrai
Автор

You're a great teacher bro. Taught me more in 10 minutes than 2 of my hour long python lessons! Don't stop bro.

tanatswamapholisamoyo
Автор

i literally paid around 35 grand a year to get my programming engineering degree, but lecturers and tutors are just reading the codes and not even explaining it lol -.-
im loving how i have only watched 5 episodes and paid NOTHING, I have learnt way more about programming here compared to uni ;-;

Rasberrychua
Автор

I experienced a moment of sheer joy when I was (finally) able to get them all to print...WITHOUT sneaking a peek at the comments to find hints lol. Your videos are really helping to motivate me to (also finally) start learning programming. Truly, thank you!!

courtneyrock
Автор

i just started python and I've been stuck on for loops for a few days now, when i watched your video i instantly understood the concept and how it works, can't thank you enough!!!!

itay
Автор

Thank you so much. I have been struggling learning python on my crappy online college. I learned more in your ten minute video than I have learned staring at a digital text book for weeks. Found my new teacher for learning python

jstudios
Автор

Hi Dojo, I have recently started learning Python on Udemy. I was having a hard time understanding for loops, but thanks for a simple explanation, I have got a good grasp of it now!

karanrubenchaudhury
Автор

I have a coding exam on Monday and I was still seriously struggling with loops and lists, so this is great! Thanks!!

BoxofCarrots
Автор

Hi! I'm Russian and i know English little bit, but YouTube has subtitles and it gives me an opportunity to learn Python) I started watching Your videos because rus YouTube doesn't have normal lessons. Thank u and don't stop making new videos)

YeahMadeit_
Автор

I love this channel, I'm an absolute beginner and YK explains it so well that I don't even need to take notes.

VgGamerKnight
Автор

Thanks CS dojo, I've learnt and developed my Python skills a lot through your tutorial videos!!

blakeparker
Автор

Hey CS Dojo / YK,
You are just amazing. I loved the way you teach all the topics so easily. I am learning python and I am going watching your whole series on python because when I started to learn python I was taught that it is very hard and complicated. But now I don't think so now.
I am from India and I am in high school right now. I wished you were my computer teacher but no problem. Thanks once again for such wonderful videos.

tusharedits
Автор

I went through my python class struggling with this but surprisingly still finished well. What you explained in this video, my instructor made it more complicated 😅
Thank you!

davida
Автор

I've seen for loops explained many ways from many different people..
Yours was by far the best I've seen and easiest to understand. 👍

wilwilson