Lecture 3: Iteration

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ม.ค. 2025

ความคิดเห็น • 40

  • @tmo314
    @tmo314 7 หลายเดือนก่อน +12

    Chapters:
    00:00 - Intro
    04:45 - Zelda
    07:49 - While Loops
    30:40 - For Loops
    45:52 - Summary

  • @NinjaScorpio
    @NinjaScorpio 7 หลายเดือนก่อน +27

    Its so hard to find a good teacher. Thank you MiT for uploading this video online for free.

  • @brucefrizzell4221
    @brucefrizzell4221 8 หลายเดือนก่อน +10

    I prefer the new format .
    Greetings from Lampasas Texas .

  • @undergroundbodega9766
    @undergroundbodega9766 8 หลายเดือนก่อน +14

    the best teacher ever.

  • @terencewong8027
    @terencewong8027 2 หลายเดือนก่อน

    Dear Dr Bell, Thank you for the clear explanation on when to use for and while loops depend on knowing or not knowing in advance the iteration.

  • @fatbagz957
    @fatbagz957 8 หลายเดือนก่อน +30

    First video has 250k views, this has 15k. Keep grinding boys

  • @voa23
    @voa23 24 วันที่ผ่านมา

    Just phenomenal thank you Instructor Ana Bell.

  • @JoyKamwendo
    @JoyKamwendo 5 หลายเดือนก่อน +3

    Great opportunity for
    Thank u MIT sooo much
    Keep doing whatcha doing
    The a place up there for people like 😇😇

  • @KeroShenouda-z4z
    @KeroShenouda-z4z 27 วันที่ผ่านมา

    thank you very much for such a useful course. I will never forget that and I hope I could support you one day.

  • @haylehayle4998
    @haylehayle4998 8 หลายเดือนก่อน +11

    I like watching this lecture

  • @retrothink
    @retrothink 5 หลายเดือนก่อน +1

    Thank you Ana. I need the review.

  • @elcorazondeamerica
    @elcorazondeamerica หลายเดือนก่อน

    excellent. I'm a beginner i hope to learn more from this channel.

  • @MowiWowi
    @MowiWowi หลายเดือนก่อน +1

    Iv been self taught for 6 months so far now im 3 coarses in and not learned nothing new yet....im doin good

    • @Pensologoesquecokkkkkk
      @Pensologoesquecokkkkkk หลายเดือนก่อน

      Hey 👋 I’m studying too. Do u wanna learn with me? I’m don’t have friends which study that too 😢😂

    • @MowiWowi
      @MowiWowi หลายเดือนก่อน

      @Pensologoesquecokkkkkk im not sure how we would go about doing that

  • @zaairvasquez377
    @zaairvasquez377 6 หลายเดือนก่อน +1

    For this YOU TRY IT (For this code to use variables start and end in the range, to get the
    total sum between and including those values.
    For example, if start=3 and end=5 the the sum should be 12) why not just change mysum = 0 to mysum = 5?

  • @zaairvasquez377
    @zaairvasquez377 6 หลายเดือนก่อน +3

    Now you can't get out... if you go right or Right...
    where = input("You're in the Lost Forest. Go Left or Right? ")
    while where == "Right" or "right":
    where = input("You're in the Lost Forest. Go Left or Right? ")
    print("You got out of the Lost Forest!")

  • @zaairvasquez377
    @zaairvasquez377 6 หลายเดือนก่อน +2

    mysum = 5
    start = 3
    end = 5
    for i in range(start, end):
    mysum += i
    print(mysum)
    You still get 12

  • @بشرعامر
    @بشرعامر 7 หลายเดือนก่อน

    greatest teacher .

  • @danielspinks9006
    @danielspinks9006 5 หลายเดือนก่อน

    On the "AT HOME" Practice 1 section:
    The answer is:
    x = 15
    for i in range(1,x+1):
    if i%5 == 0:
    print(i)
    What is the == 0 do? I get the i%5 is Divide i by 5.

    • @bravoalphahk
      @bravoalphahk 3 หลายเดือนก่อน

      == checks for sameness, but i % 5 gets the remainder of division, not division itself.
      15 / 5 would give 3, but 15 % 5 gives the remainder of 15 / 5, which is zero. And this zero remainder is true in those three cases: where i is 5, 10, and 15.

  • @constantinelinardakis8394
    @constantinelinardakis8394 4 หลายเดือนก่อน +1

    17:26 left off

  • @Astroboy-l4g
    @Astroboy-l4g 2 หลายเดือนก่อน

    Completed

  • @Zakariah1971
    @Zakariah1971 5 หลายเดือนก่อน

    Please ad the Dr. in front of your name. Makes a huge difference.

  • @MowiWowi
    @MowiWowi หลายเดือนก่อน

    Is there a pdf of all the coarses i can get?

    • @mitocw
      @mitocw  หลายเดือนก่อน

      Here's what we have for courses: ocw.mit.edu/search/
      Best wishes on your studies!

  • @nagabalakrishnan3310
    @nagabalakrishnan3310 5 หลายเดือนก่อน +1

    Can we access microquizes?

    • @mitocw
      @mitocw  4 หลายเดือนก่อน +3

      The course materials are available on MIT OpenCourseWare at: ocw.mit.edu/courses/6-100l-introduction-to-cs-and-programming-using-python-fall-2022/.
      Best wishes on your studies!

  • @Paradoxonium990
    @Paradoxonium990 6 หลายเดือนก่อน

    The fingertip exercise's solution code of this lecture is not entirely correct. N has to be cast as a variable first as per the question.

    • @bravoalphahk
      @bravoalphahk 3 หลายเดือนก่อน +1

      Yes. They say it is given to you as a positive integer, but you're right, you would actually need to include that in the code for it to work.

  • @carsonjamesiv2512
    @carsonjamesiv2512 8 หลายเดือนก่อน +2

    GOOD🎉

  • @alexiscamio4542
    @alexiscamio4542 8 หลายเดือนก่อน

    Hello, thanks, How are you? From France, great Thanks. Do you Know the benefts of doing sports?

  • @KeroShenouda-z4z
    @KeroShenouda-z4z 26 วันที่ผ่านมา

    😍😍🥰

  • @КвазиоНитрино
    @КвазиоНитрино 7 หลายเดือนก่อน

    Смотрю в 2 часа ночи) Зачем?)

    • @bravoalphahk
      @bravoalphahk 3 หลายเดือนก่อน

      Конечно, чтобы стать умнее и спасти мир.

  • @Khanzada_Pathan007
    @Khanzada_Pathan007 8 หลายเดือนก่อน

  • @MowiWowi
    @MowiWowi หลายเดือนก่อน

    Iv been self taught for 6 months so far now im 3 coarses in and not learned nothing new yet....im doin good