Print (Programing + Math)

--Originally published at Py(t)hon

This time we are going to see how to write and run basic math operations in Python, first we have to know the signs:

“+” is for summing

“-” is for subtracting

“*” is for multiplying

“/” is for dividing

“%” is for the remain of the division

Let’s start, for the past operations it doesn’t matter how many values do you want to sum, subtract, multiply or divide, it could be two to infinity, the important thing here is the sign.

Sum:

math1

Subtraction:

math2

Multiplication:

math3

Division & Remain:

math4

Here is the video that help me learned this stuff?

#Pug#Basic#TC101#Python#ISC It will continue…