I want 100 python exercises like this to try it by myself , and then maybe it will stick in my head forever and ever.
@khanacademy3 ай бұрын
Try out some of our practice Python exercises in our Intro to CS - Python course! For example, we have a programming assignment on while loops that goes along with this exact video: www.khanacademy.org/computing/intro-to-python-fundamentals/x5279a44ae0ab15d6:simulating-phenomena-with-loops/x5279a44ae0ab15d6:while-loops/pc/dice-roller
@kamrunnaharmukta6694 ай бұрын
Nice work. Keep going
@chlodnia4 ай бұрын
Thanks
@Shadoxite4 ай бұрын
6 seconds
@Shadoxite4 ай бұрын
How does the computer execute a while loop in Python, and what are the steps involved in tracing its execution?
@davidmurphy5634 ай бұрын
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.