intro to python\nwhat does the following python program print?\nx = 9 + 6 / 3 * 2 - 1\nprint(x)\n15\n21\n12\n9

intro to python\nwhat does the following python program print?\nx = 9 + 6 / 3 * 2 - 1\nprint(x)\n15\n21\n12\n9
Answer
Explanation:
Step1: Follow order of operations (PEMDAS) for division and multiplication
First, calculate $6/32$. Since division and multiplication have the same precedence and are done from left - to - right, $6/3 = 2$, then $22=4$.
Step2: Calculate addition and subtraction
Now, calculate $9 + 4-1$. First, $9 + 4=13$, then $13-1 = 12$.
Answer:
12