Khan Academy
Khan Academy
  • Видео 8 430
  • Просмотров 2 136 523 562
Tracing loop execution | Intro to computer science - Python | Khan Academy
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:simulating-phenomena-with-loops
Trace how the computer executes a while loop step-by-step. Practice how to use the loop variable stop, start, and update values to count the number of loop repetitions. View the program used in this video at: www.khanacademy.org/python-program/tracing-loop-execution/5242191622881280
Khan Academy is a nonprofit organization with the mission of providing a free, world-class education for anyone, anywhere. We offer quizzes, questions, instructional videos, and articles on a range of academic sub...
Просмотров: 205

Видео

while loops | Intro to computer science - Python | Khan Academy
Просмотров 106
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:simulating-phenomena-with-loops Learn how to use while loops to repeat execution of a block of code. Trace how a loop variable updates inside of the loop body to eventually terminate the loop. View the program used in this vide...
Modules program design: robot sim | Intro to computer science - Python | Khan Academy
Просмотров 45
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:simulating-phenomena-with-loops Import and use functionality from other modules to build a basic robot simulation. Apply the random module to randomly decide the robot's movement. View the program used in this video at: www.kha...
Importing modules | Intro to computer science - Python | Khan Academy
Просмотров 63
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:simulating-phenomena-with-loops How can we reuse functionality other programmers have already built? Learn how to import Python modules into your programs to access libraries of existing code. Examine the security and copyright...
Algorithmic bias | Intro to computer science - Python | Khan Academy
Просмотров 43
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals What assumptions does an algorithm make? Evaluate the biases behind both human-generated and AI-generated algorithms. Learn how to consume and design algorithms responsibly. Khan Academy i...
Nested conditionals | Intro to computer science - Python | Khan Academy
Просмотров 44
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals What happens when you nest one conditional inside of another? Follow the indentation to trace the execution of a program with nested conditionals. View the program used in this video at: w...
elif and else program design: space weights | Intro to computer science - Python | Khan Academy
Просмотров 41
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals Apply chained conditionals with if, elf, and else branches to calculate an object's weight on other planets based on the gravitational force. View the program used in this video at: www.kh...
elif and else branches | Intro to computer science - Python | Khan Academy
Просмотров 40
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals How can we write conditionals with multiple branches of control flow? Trace the execution of chained conditionals to understand how the computer chooses which if, elif, or else branch to e...
Booleans program design: content moderation | Intro to computer science - Python | Khan Academy
Просмотров 47
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals Apply compound boolean expressions and if statements to design a content moderation algorithm. Use the and, or, and not operators to construct compound conditions that flag suspicious post...
Evaluating compound boolean expressions | Intro to computer science - Python | Khan Academy
Просмотров 38
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals Trace how the computer evaluates compound boolean expressions with the logical operators and, or, and not. See how the computer optimizes to short-circuit evaluation if it already knows th...
if statements program design: bus fare | Intro to computer science - Python | Khan Academy
Просмотров 40
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals Apply boolean expressions and if statements to design a program that determines a passenger's bus fare based on their age group. View the program used in this video at: www.khanacademy.org...
if statements | Intro to computer science - Python | Khan Academy
Просмотров 39
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals Learn how to branch control flow with conditionals. Trace the execution of an if statement to understand how the computer chooses which line of code to execute next. View the program used ...
Intro to algorithms and selection | Intro to computer science - Python | Khan Academy
Просмотров 42
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:designing-algorithms-with-conditionals What is an algorithm? Use algorithms to plan out your programs, and evaluate approaches to a problem based on correctness, efficiency, and readability. Explore how to use selection in your...
Order of operations with function calls | Intro to computer science - Python | Khan Academy
Просмотров 48
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:computational-thinking-with-variables Trace how the computer evaluates complex arithmetic expressions with multiple operators, built-in functions, and nested function calls. View the program used in this video at: www.khanacade...
Type casting | Intro to computer science - Python | Khan Academy
Просмотров 71
Courses on Khan Academy are always 100% free. Start practicing-and saving your progress-now! www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:computational-thinking-with-variables How do you convert a value from one data type to another? Use the built-in type casting functions to convert values to and from integers, floats, and strings. View the program used in this ...
Variables program design: catering contract | Intro to computer science - Python | Khan Academy
Просмотров 56
Variables program design: catering contract | Intro to computer science - Python | Khan Academy
User input and frontend development | Intro to computer science - Python | Khan Academy
Просмотров 44
User input and frontend development | Intro to computer science - Python | Khan Academy
Evaluating expressions with variables | Intro to computer science - Python | Khan Academy
Просмотров 29
Evaluating expressions with variables | Intro to computer science - Python | Khan Academy
What is a variable? | Intro to computer science - Python | Khan Academy
Просмотров 54
What is a variable? | Intro to computer science - Python | Khan Academy
Debugging with linters and stack traces | Intro to computer science - Python | Khan Academy
Просмотров 52
Debugging with linters and stack traces | Intro to computer science - Python | Khan Academy
Intro to tracing program execution | Intro to computer science - Python | Khan Academy
Просмотров 57
Intro to tracing program execution | Intro to computer science - Python | Khan Academy
Plus operator and the print function | Intro to computer science - Python | Khan Academy
Просмотров 366
Plus operator and the print function | Intro to computer science - Python | Khan Academy
What is computer science? | Intro to computer science - Python | Khan Academy
Просмотров 330
What is computer science? | Intro to computer science - Python | Khan Academy
Interactions within and among species | High school biology | Khan Academy
Просмотров 1,8 тыс.15 часов назад
Interactions within and among species | High school biology | Khan Academy
Blackbody radiation | Physics | Khan Academy
Просмотров 5 тыс.9 часов назад
Blackbody radiation | Physics | Khan Academy
Atomic spectra | Physics | Khan Academy
Просмотров 10 тыс.18 часов назад
Atomic spectra | Physics | Khan Academy
The photoelectric and photovoltaic effects | Physics | Khan Academy
Просмотров 8 тыс.День назад
The photoelectric and photovoltaic effects | Physics | Khan Academy
Diffraction and interference of light | Physics | Khan Academy
Просмотров 6 тыс.День назад
Diffraction and interference of light | Physics | Khan Academy
Refraction of light | Physics | Khan Academy
Просмотров 10 тыс.14 дней назад
Refraction of light | Physics | Khan Academy
Electromagnetic waves | Physics | Khan Academy
Просмотров 15 тыс.14 дней назад
Electromagnetic waves | Physics | Khan Academy

Комментарии

  • @FeruzMahmudov-ez6yw
    @FeruzMahmudov-ez6yw 7 часов назад

    Òzbekcha variant yòqmi?

  • @Shadoxite
    @Shadoxite 7 часов назад

    How does the computer execute a while loop in Python, and what are the steps involved in tracing its execution?

    • @davidmurphy563
      @davidmurphy563 7 часов назад

      Depends on the language. Python here compiles to bytecode, makes a file which is run. After that it's interpreted line by line in runtime. Honestly, it's not usual to worry about any of that under the hood stuff. Especially with beginner level stuff like this. Enough to know there are a series of steps which take the code to machine language and ultimately binary instructions which become the fetch, execute cycle.

  • @AbdulqadirpalliPalli
    @AbdulqadirpalliPalli 7 часов назад

    That's great

  • @Shadoxite
    @Shadoxite 7 часов назад

    6 seconds

  • @lupitasitra
    @lupitasitra 7 часов назад

    May God bless you for standing for humanity. I believe all students parents will soon join 💞✨

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    Brave beautiful people 🔥😛

  • @cadence-tz5yw
    @cadence-tz5yw 7 часов назад

    Thanks you we proud of you all 💞✨

  • @elspeth-ni9br
    @elspeth-ni9br 7 часов назад

    So proud of all you students! You make us proud. 🧡💖

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    Thank you keep going and unify with different university and raise your voice together and have leaders who can take this to another level you guys are young and strong and your voice is hard all over the world. You guys can bring changes keep going thank you. we are hopeful now that Palestine will be free soon. In shaa Allah. Also remember, we are all with you. 💖😘

  • @elspeth-ni9br
    @elspeth-ni9br 7 часов назад

    God bless you, hero sisters. 😻👅

  • @lupitasitra
    @lupitasitra 7 часов назад

    I am proud of these students risking everything for justice and human rights! ✨🍓

  • @cadence-tz5yw
    @cadence-tz5yw 7 часов назад

    Thank you UAW 😘🍭

  • @elspeth-ni9br
    @elspeth-ni9br 7 часов назад

    Freedom and justice for Palestine. ✨🍓

  • @lupitasitra
    @lupitasitra 7 часов назад

    The younger generation of America gives me hope that the country isn’t entirely rotten. There are still people who care about humanity. May be we will have a better world for the remaining people of Palestine. 🇵🇸 💝🐱

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    Thank you for your hard work and for all the students in all the universities around the country. Free free 🇵🇸 🇵🇸 🇵🇸 🇵🇸 🇵🇸 🇵🇸 🇵🇸 🍭💝

  • @lupitasitra
    @lupitasitra 7 часов назад

    We are with you 💋🔥

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    Respect for all this brave students 🧡💖

  • @elspeth-ni9br
    @elspeth-ni9br 7 часов назад

    Our hearts with you 🍓🌺

  • @elspeth-ni9br
    @elspeth-ni9br 7 часов назад

    I remember the Vietnam War protests that brought that particular corrupt disaster to a grinding halt..............keep doing what you are doing and thank you from an old man to the future leaders of our common humanity.......Carry on. 😘🍭

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    US also guilty of this genocide !! 🍒🧡

  • @cadence-tz5yw
    @cadence-tz5yw 7 часов назад

    What animal do you suggest for friends? 💚🍓

  • @lupitasitra
    @lupitasitra 7 часов назад

    from UFCW 3000 in the Great Pacific Northwest ✨🍓

  • @Fateh_0007
    @Fateh_0007 7 часов назад

    Thanks for uploading 😊

  • @cadence-tz5yw
    @cadence-tz5yw 7 часов назад

    TikTok brain again ✨🍓

  • @lupitasitra
    @lupitasitra 7 часов назад

    What a load of Bull oney. 🌺💚

  • @Jacobontop247
    @Jacobontop247 7 часов назад

    What grade is this for

  • @lupitasitra
    @lupitasitra 7 часов назад

    Awesome ...Thank you 💞✨

  • @kathrine-qi6kj
    @kathrine-qi6kj 7 часов назад

    are you protesting your universities that dont have anything to do with the war and not the military or government that make the decisions? You guys are way off in location 💖😘

  • @medhazaman09
    @medhazaman09 9 часов назад

    Anyone on 2024?

  • @BrieMoraes
    @BrieMoraes 10 часов назад

    Amazing lesson, thank you.

  • @123AndJC
    @123AndJC 11 часов назад

    Thanks for making this, it is beneficial to research terms and gain a starting place to learn. I have a question though. Radiation = "no matter heat transfer". That appears factually not true, unless I am missing something. Radiation: energy that moves from one place to another that can be described as waves or particles. Please explain your definition.

  • @CaptPicard81
    @CaptPicard81 12 часов назад

    The numbers may be imaginary but my confusion is 100% real

  • @marcoponzio1644
    @marcoponzio1644 13 часов назад

    Wonderful 🤩

  • @sciencenerd7639
    @sciencenerd7639 13 часов назад

    thank you Sal!

  • @cinattra
    @cinattra 16 часов назад

    Where were all the women? I'm guessing there were not many women to choose from for all those young probably horny guys. They had a lot of pent-up energy.

  • @jinglejungleballs
    @jinglejungleballs 17 часов назад

    Bomboclatt

  • @Samuel-em3rh
    @Samuel-em3rh 17 часов назад

    I'm am just going to skip all my lectures and watch these.

  • @akivagross9055
    @akivagross9055 19 часов назад

    This is so satisfying, I had no idea math could make sense haha

  • @JohnnerConnorMinecraft
    @JohnnerConnorMinecraft 19 часов назад

    2:27 did bro jut figure out a secret code to dividing

  • @tequiliaboone7021
    @tequiliaboone7021 20 часов назад

    Thank you for the help

  • @user-fh6rc8bn8g
    @user-fh6rc8bn8g 20 часов назад

    Sir what if we consider the electric field of the electromagnetic wave is responsible for the ejection of electron instead of the imagining as photon like we did in reflection of light So higher the frequency the electric field wave the more the energy causes the of the light And thanks for this amazing explanation

  • @AdrienJaune
    @AdrienJaune 21 час назад

    Who is there before the exams?🤔

  • @JesminHossion
    @JesminHossion 22 часа назад

    But how it become x+y+z=180°

  • @dedeus_ferdinand
    @dedeus_ferdinand 22 часа назад

    The chemistry teacher gives me Walter White vibes

  • @pancio-ciancio
    @pancio-ciancio 23 часа назад

    The notation used helps me a lot, and now it's clear what is going on. It's interesting how multiply a vector(in base B) with the C(change of basis matrix) results in a vector expressed on a standard basis. I thought the result vector was expressed in non-standard and led me to headcases

  • @_Edits-kb2jg
    @_Edits-kb2jg 23 часа назад

    Thanks🎉

  • @jpsupiegaming7012
    @jpsupiegaming7012 23 часа назад

    Would size be the same as measuerement? For example the measurement of the size of something would vary from miles, kilometers, inches/distance. But what about other measurements like temperature, mass, or volume. It already feels right to be adding those commas there. But for example using what you had in the video only changning "big" and "mower," it goes from "The cool big old square black Texan Leather riding mower." To "The cool 80-degree old square black Texan leather riding motorcycle." That feels right too, what is your opinion?

  • @WirTrivedi
    @WirTrivedi День назад

    I can say he is a very good artist please reply ☺️

  • @aveeshgupta
    @aveeshgupta День назад

    you are the best physics and chemistry teacher on the planet

  • @MohammedSharifi-vb1zh
    @MohammedSharifi-vb1zh День назад

    👌🏼👌🏼👌🏼👌🏼👌🏼👌🏼👌🏼❤