- 1
I a newbie here so cant describe the question
Print(3-3*(33 + 77) )
4 Respuestas
+ 4
Complete the python for beginners course. You will automatically know about it
+ 4
No biggie, if you got confused here's how it goes:
print(3-3*(33 + 77))
>Parenthesis (33+77) evaluate first.
>Then Multiplication 3 * 110
>Then Subtraction 3 - 330
>Output = -327
Learn the Operator Precedence table, that way you can easily calculate the output of such problems.
+ 2
Thankyou very much 🙂
+ 2
Np :)