(a)Explain Operator and Expressions with suitable Example?
Answers
Answered by
0
Explanation:
After finishing our previous tutorial on Python variables in this series, you should now have a good grasp of creating and naming Python objects of different types. Let’s do some work with them!
Answered by
0
Answer:
Arithmetic Operators
OperatorDescriptionExample+Adds two operandsA + B will give 30-Subtracts second operand from the firstA - B will give -10*Multiplies both operandsA * B will give 200/Divides numerator by de-numeratorB / A will give 2
Similar questions