Computer Science, asked by Anonymous, 10 months ago

usr/bin/python
a = 21
b = 10
c = 0
c = a + b
print “Line 1 – Value of c is “, c
c = a -b
print “Line 2 – Value of c is “, c
c = a * b
print “Line 3 – Value of .c is “, c​

Answers

Answered by ıtʑFᴇᴇʟɓᴇãᴛ
2

Operators are special symbols that represent computations like addition and multiplication. The values the operator uses are called Operands.

Similar questions