yego.me
💡 Stop wasting time. Read Youtube instead of watch. Download Chrome Extension

Tracing arithmetic expressions | Intro to CS - Python | Khan Academy


4m read
·Nov 10, 2024

How does the computer evaluate expressions with multiple operators, multiple function calls, or even nested function calls? That's a function call inside the parentheses of another function call. To examine this order of operations, let's trace a program with some complex arithmetic expressions.

As always, the first thing the computer does when we run the program is load the first instruction into its working memory. When it sees an instruction like this, where there are nested function calls, it's going to search for the innermost parentheses first. Then it starts evaluating from the inside out. Here, in the innermost parentheses we have the string "how many servings." This is already a single value, so it doesn't need simplifying.

Okay, so the computer's going to peek outside of those parentheses and ask, "What did you want me to do with this value, how many servings?" It sees the input function. The computer takes that value, displays it in the console, pops up a prompt, and then waits for the user to enter something. The computer's done with this part of the instruction, but it won't continue evaluating until it gets an answer back from the user.

Let's say I type in five and hit enter. Where does that five go? Well, the input function returns out whatever value the user entered. Remember that the input function always returns that entered value as a string. So this isn't the integer five; it's the string "five." Great! Now we have a much simpler expression. The computer goes to the parentheses first, sees that it's already a single value, so there's nothing to do. It peeks outside the parentheses and sees the int function.

The int function takes that string "five," casts it to an integer, and returns out the value five. Now we just have a standard assignment statement. This statement tells the computer to go off to its memory, allocate a new chunk of it to remember a new value, then it tags it with the name servings and sticks that value five in there. This instruction is now complete. The computer did everything, so it's going to clear out that working memory and look for that next line of the program.

Okay, we load the second instruction into working memory. Looks like we're just doing some math here. We follow PEMDAS or GEMAS—that's parentheses, exponents, then multiplication and division, and then addition and subtraction. So we've got parentheses first. The computer evaluates 6 - 2. Then we're left with only multiplication and division operators, which are at the same level of precedence.

So the computer just evaluates left to right. The first thing it sees is this variable servings. It needs to go off and access that chunk of memory that was associated with the name servings. So it goes here, sees servings, follows that line, and it finds the value five. So we substitute that in here. 5 * 4 is 20. Then we have 20 divided by 3. This is the float division operator, so we get 6.666 repeating.

Now it sees that equal sign and it says, "Ah, you want me to assign this value." I finally have to the variable spices. It checks its memory and sees that it has no recollection of spices, so it allocates a new chunk, tags it with a name, and sticks that value in there for later. All done! Clear it out.

This next line is blank, so the computer skips that. Then the line after that is a comment because it starts with this hashtag character, so the computer ignores that too. Comments are for humans, not for computers. Load in that next line and here we have two sets of parentheses. But those parentheses are at the same level of precedence; they're not one inside of the other.

So that means we're just going to evaluate them left to right, starting with those left parentheses. The computer is going to grab that value of spices from its memory and substitute it in. Now it has two values inside these parentheses separated by a comma, but they're both simplified all the way down, so we're good here. We pop out the parentheses and we see the min function, and the min function returns out the minimum of those two input values.

Now it jumps to the next set of parentheses, substitutes in the value of servings—that's five—two single values. It pops outside the parentheses, sees that it wants to take the maximum. 5 is greater than 4, and now we just have two numbers to add together. We have a single value now on the right-hand side of the equal sign, so we can go ahead and do that assignment.

Checks in its memory and sees, "Oh, I already know spices, so I'm just going to erase what's in there and replace it with this new value." Cool! Clear out working memory, move on to the next line. Now, that's a lot of parentheses we're starting in and we're moving out. We've got an expression here that needs simplifying. We're substituting in spices and then we're adding three to get that down to a single value.

Now everything inside here has been simplified, so we peek out and see the round function. The round function tells the computer to take that first value and round it to the number of decimal places that the second value says. Here we're rounding to two decimal places. Now we're in the next innermost parentheses. We already have a single value, so we pop outside those parentheses and we see the string function.

The string function casts this to a string and returns out that value. Now we're in the last set of parentheses. We're concatenating two strings, so we just smoosh them together. And what should it do with this value? Oh, print it! There's no next line, so it terminates the program execution.

And when it terminates, that means the computer also forgets everything in its short-term memory, so all these values go away too. That's it for this program. Remember, if you ever have a complex expression, the computer always evaluates innermost parentheses to outmost.

More Articles

View All
Uncover the Mysteries of the Deepest Lake on Earth | National Geographic
There are places on Earth whose power cannot be explained, whose energy flows from depths beyond history. Local shamans say this lake was formed when the Earth split open, revealing a pillar of flames reaching to the sky, quenched only by deepest floodwat…
Polar curve area with calculator
What we’re going to try to do is use our powers of calculus to find this blue area right over here. What this blue area is, is the area in between successive loops of the graph. The polar graph ( r(\theta) = 3\theta \sin(\theta) ) I’m graphing it in polar…
The productivity hack nobody is talking about
There’s a chance that you’re trying way too hard to change your life. You’re expending all of your willpower on things that don’t require it. Let me give you an example: I’ve been playing hockey for about 20 years. I’m going to be 27 this year and I’ve be…
Citizenship and voting rights of indigenous people | Citizenship | High school civics | Khan Academy
In this video, I want to give you a very brief overview of the history of citizenship for Indigenous people in the United States. The story of Indigenous people in North America and their citizenship status in the United States is long and complex and is …
Discovering Gravitational Waves | StarTalk
[Music] 30 million years ago, in a distant galaxy, 30 million light years away, two black holes collided. Each black hole is itself a significant disturbance in the fabric of space and time. When they collide, it creates an even greater ripple that gets …
Continuity and change in the Gilded Age | Period 6: 1865-1898 | AP US History | Khan Academy
The Second Industrial Revolution in the United States assured in new technologies and new ways of living and working during the Gilded Age. Steel, electricity, and the telephone allowed railroads to crisscross the country, skyscrapers to rise out of citie…