explain briefly %,==,!=,/,+
Answers
Answered by
0
Answer:
these are different operators.
Explanation:
% denote the module or remainder.
== denote equal operator.
!= denote not equal to operator.
/ denote divide operation.
+ add or sum function.
Answered by
0
Answer:
These are different operators in python language
Explanation:
% is modulus (gives remainder of division)
== is to check whether two values are equal or not
!= is to check whether two values are not equal
/ is division
+ is addition
Similar questions