0
Why why why is this the answer (python)
Print(3**(3+2//4)) = 27 When I did the math I got 3+2 = 5 5//4 = 4 can only go into 5 one time Then 3**1 = 3 (this is what I got) Someone please explain???
2 Answers
+ 5
You explained it wrong.
because when solving an equation using Python, you have to multiply or divide first unless the addition and subtraction signs were in parentheses.
Steps:
3**(3+2//4)
= 3**(3+0)
= 3**3
= 27
+ 3
thankđ. Got it