Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 528 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 528 Bytes
description
In this Lecture, you'll learn everything about different types of operators in Python, their syntax and how to use them with examples

Python Operators

What are operators in python?

Operators are special symbols in Python that carry out arithmetic or logical computation. The value that the operator operates on is called the operand.

For example:

>>> 5 + 3
8

Here, + is the operator that performs addition. 5 and 3 are the operands and 8 is the output of the operation.