Python — Operators

Alvif Sandana Mahardika
1 min readApr 1, 2021

Hello everyone 😁 If you want to read my previous post, you can click link above.

Overview

While declaring a new variable we use “=” to assign with any value. This symbol is the one of operators. Operators are used to perform operations on variables and values. In this post, we will discuss about operators in Python language.

Arithmetic Operators

Arithmetic operators are used to perform common mathematical operation.

arithmetic operators

Assignment Operators

Assignment operators are used for assign values to variables.

assignment operators

Comparison Operators

Comparison operators are used for compare two values.

Bitwise Operators

Bitwise operators are used for compare binary numbers.

bitwise operators

Logical Operators

Logical operators are used for combine conditional statements.

logical operators

Next post:

--

--