What is an operator in python?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
An operator is a symbol that performs a specific operation on one, two, or more operands. Common operators include arithmetic, logical, relational, bitwise, and others.
Example:
```python
# Arithmetic operators
result = 5 + 3
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
An operator is a symbol that performs a specific operation on one, two, or more operands. Common operators include arithmetic, logical, relational, bitwise, and others.
Example:
```python
# Arithmetic operators
result = 5 + 3
```
| Is This Answer Correct ? | 0 Yes | 0 No |
Is python the right choice for Web based Programming?
What is the use of assertions in python?
Is nan a float python?
How do I run python setup py?
What does kwargs mean?
Is string immutable ?
Tell me what are different methods to copy an object in python?
What is the meaning of stdin in python?
Can python be used for web client and web server side programming? And which one is best suited to python?
How to compare two lists in python?
How is inheritance and overriding methods are related in python?
What are the difference between python and java?