list the python arithmetic operator
Answers
Answered by
1
Answer:
check photo whose given by me
Attachments:
Answered by
5
Calculations including add, subtract, multiply and divide are being executed with the help of Arithmetic operators. Further explanation is given below.
Explanation:
Python operator seems to be a term that operates on one or even more operands. The operand is an attribute or a number we execute the action on.
A description of the Python arithmetical operators is given below:
- Addition "+" (Add two or more than two values together).
- Subtraction "-" (Subtract the value from the other).
- Multiplication "*" (Multiply two operands together).
- Division "/" (Divide left operand to the right one).
- Modulus "%" (Returns the reminder from the two operands).
- Exponent "**" (Exponential values can be calculated from this).
- Floor division "//" (Provide the division on the integers).
Learn more:
What are operators in Python? ...
https://brainly.in/question/13026860
Similar questions