Python Programming Tutorials

Program no.1 Arithmetic operators

Divyendra Rajawat
1 min readJul 1, 2020
>>> a=+100
>>> b=-100
>>> print(a)
100

this program is written in python idle and if you don’t have the idle I will provide the link after the blog gets over.

this example code given above is the example of the unary operators.

These operands can only operate one operator like +100.

--

--