Operators - Python
Given two integers a and b, your task is to calculate:-
a+b
a- b
a*b
a//b
Answers
Answered by
2
Please write questions properly.
Anyhow,
a + b =Addition {In Python}
a - b =Subtraction {In Python}
a * b=Multiplication {In Python}
a//b = Division {In Python}
Remember they all are written in brackets ( ) without string value to perform operations.
Hope this helps you.
Similar questions