Computer Science, asked by chakrabortysubhadity, 4 months ago

c)
Write the operator precedence chart use in python
language.​

Answers

Answered by harshid710
1

Answer:

Operator precedence affects how an expression is evaluated. For example, x = 7 + 3 * 2; here, x is assigned 13, not 20 because operator * has higher precedence than +, so it first multiplies 3*2 and then adds into 7.

Explanation:

Similar questions