KwickClips Python · 44 sec · free
What is 10 + 3 * 2?
Short answer. 16.
How do you get 26?
(10 + 3) * 2.
Precedence
| Order | Operators |
|---|---|
| 1 | ( ) |
| 2 | ** |
| 3 | * / // % |
| 4 | + - |
Remember
| Brackets, power, multiply, add |
| Same level: left to right |
| (10 + 3) * 2 gives 26 |
Ten plus three into two. Twenty six or sixteen? Python follows this order. Brackets first. Then power. Then multiply, so six. Then add, so sixteen. Brackets, power, multiply, add. Same level, left to right. Brackets give twenty six.
This clip is from the full lesson: Python Operators, Precedence and Expression Evaluation — 9 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 9 Information Technology (402), CBSE Class 9 Artificial Intelligence (417), CBSE Class 11 Computer Science (083), CBSE Class 11 Computer Science (083)
More KwickClips from this lesson
What does % give?44 sec
Why no ZeroDivisionError?42 sec
Does Python have ++?44 sec
What does is check?44 secVoice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.

