Computer Science, asked by Khushboor4004, 4 months ago

_________ are the symbols which performs some operation on some values.​

Answers

Answered by umangdhiman451
2

Answer:

This tutorial explains about Operators in Python. There are different types of Python operators available such as Arithmetic, Comparison, Assignment, Logical, Bitwise, Identity, and Membership operators. You’ll learn their syntax and get to use them with tons of examples available here.

Explanation:

Each operator has a specific symbol to represent it. We’ll check out all the associated symbols and understand their meaning. Each of them performs a particular operation and use one or more operands a.k.a variables.

E.g. – a | b or a & b. The literals a and b are operands whereas “|” and “&” are operators. The former (|) does a bit by bit OR operation while the latter (&) does an AND operation.

I HOPE IT WILL HELP YOU

Similar questions