Computer Science, asked by ashreya1906, 5 months ago

3) Evaluate: 12%3**4//5+6 python​

Answers

Answered by allysia
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