3) Evaluate: 12%3**4//5+6 python
Answers
Answered by
14
Answer:
8
Explanation:
The priorities of operators in python are as followed:
- ()
- ^ or * *
- /, // , %, *
- +,-
Using that,
we solve it in the following order:
- 12%3* *4//5+6
- 12%81//5+6
- 12//5+6
- 2+6
- 8
Similar questions