Computer Science, asked by scorpionica, 3 months ago

evaluate 100*(56%10)//3-6 and write the output​

Answers

Answered by allysia
2

Answer:

194

Explanation:

The priorities of operators in python are as followed:

  • ()
  • ^ or * *
  • /, // , %, *
  • +,-

Using that,

we solve it in the following order:

  • 100*6//3-6
  • 100*2-6
  • 200-6
  • 194
Similar questions