Python

Operators in Python

Operators in Python¶ As any programming language Python supports all types of Operations. There are several categories of operators. For now we will cover Arithmetic and Comparison Operators.* Arithmetic Operators Addition (+) Subtraction (-) Multiplication (*) Division (/) Mod (%) returns reminder + is also used for concatenation of strings. Comparison Operators – typically return …

Operators in Python Read More »