Which two operators can be used on numeric values in Python? *
@
%
+
#
Answers
Answered by
6
Answer:
hi...
Explanation:
the two operators which can be used on numeric values in Python are:
- %
- +
hope it helps you ☺️
Answered by
0
Answer:
+ and % are two operators can be used on numeric values in Python
Explanation:
- Plus(+) Operator when used on two numeric values returns the sum of the values given by the user to it. It is mostly used with all the data types except character and string.
- Modulous(%) operator when used on two numeric values returns the remainder. It is used only with integers and long datatypes.
#SPJ3
Similar questions