Informatics Practices
What is the order of precedence of arithmetic operators given below in Python?
(1) Parenthesis
(2) Exponential
(3) Multiplication
(4) Division
(5) Addition
(6) Subtraction
- 1,2,3,4,5,6
- 2,3,4,5,6,1
- 1,3,2,6,4,5
- 4,6,5,2,3,1
Python Funda
1 Like
Answer
1,2,3,4,5,6
Reason — The order of precedence of arithmetic operators in Python is Parenthesis (), Exponential (**), Multiplication (*), Division (/), Addition (+), Subtraction (-).
Answered By
1 Like
Related Questions
Single line comments in Python begin with …………… symbol.
- #
- "
- '''
- %
Which of the following does not represent a complex number?
- K = 2 + 3j
- K = complex(2,3)
- K = 2 + 3i
- K = 4 + 3j
What will be the output of the following snippet?
x, y = 2, 6 x, y = y, x + 2 print(x, y)- 6 6
- 4 4
- 4 6
- 6 4
The extension for a Python file is given as:
- .pt
- .pwy
- .py or .pyw
- .yppy