Python Operators Python operators are a list of symbols or special characters that are used to perform specific operations on one or more operands (values or variables). Python provides several types of operators , including arithmetic operators , assignment operators , bitwise operators , comparison operators , identity operators , logical operators , and membership operators . In this article, we cover all of these operators and explain their purpose and also provide practical examples. Python Operators Operators are used to perform operations on variables and values. In the example below, we use the + operator to add together two values: Arithmetic Operators Python Arithmetic operators are used to perform basic mathematical operations like addition, subtraction, multiplication and division. In Python 3.x the result of division is a floating-point while in Python 2.x division of 2 integers was an integer. To obtain an integer result in Python 3.x floored (// integer) is used. Python Operators are used to perform operations on values and variables. Learn different python operators like Arithmetic, Logical, Comparison, Assignment, Bitwise etc. with example.