search
HomeBackend DevelopmentPython TutorialWhat are the commonly used operators in Python?

Like most other languages, commonly used operators in python also include arithmetic operators, comparison operators, and logical operators, but there are some differences, which are introduced in detail below.

What are the commonly used operators in Python?

1. Arithmetic operators

Like most other languages, python also has (add ), - (subtraction), * (multiplication), / (division), and % (remainder). In addition, there are two special operators, namely // (division) and * * (power operator, or exponentiation operator).

Here, the functions of , -, * are the same as those of the calculator and will not be described again. The

% operator is also valid for floating point numbers, for example:

>>> 3.75 % 0.5
0.25
>>> 3.75 % 2
1.75
>>>

** The operator performs exponentiation (exponentiation) operations, for example:

>>> 3**2
9
>>> 2**3
8
>>>

Things to note It is the priority relationship between the ** operator and the sign (, -). ** has a higher priority than the sign on its left side and a lower priority than the sign on its right side. Or you can simply think that the ** operator has a higher priority than the plus and minus signs, because when the plus and minus signs are on the right side of it, the two symbols are together, and the plus and minus signs cannot be removed. For example:

>>> -3**2
-9
>>> 3**-2
0.1111111111111111
>>>

The two division operators / and // need to be emphasized and distinguished. In python 2.7, / is an integer divisor for the division of two integers. The calculation result only leaves the integer part and the decimal part is gone. For example:

>>> 3/2
1
>>>

If you want to execute ordinary The division, that is, to retain the decimal part of the calculation result, can be performed with floating point numbers, for example:

>>> 3.0/2
1.5
>>> 3/2.0
1.5
>>> 3/2.
1.5
>>> 3.0/2.0
1.5
>>>

In python 3, / has changed, whether it is integer division or floating point division , all floating-point divisions are performed, that is, the decimal part of the calculation result can be retained.

At the same time, another way to retain the decimal part of the calculation result in python 2 is to add a sentence from __feture__ import division before the program and execute the statement (__ in the statement is two an underscore), for example:

>>> from __future__ import division
>>> 3/2
1.5
>>> 5/4
1.25
>>>

The division operation at this time is already consistent with the division operation in Python 3.

In python, // this integer division operator is also provided. It does integer division, and it also performs integer division on floating point numbers. For example:

>>> 3//2
1
>>> 3.0//2.0
1.0
>>> 5//2.0
2.0
>>>

2 . Comparison operators

Like most other languages, Python's comparison operators include , >=, ==, !=. Comparison operators return a Boolean value of True or False depending on whether the value of the expression is true or false. For example:

>>> 3 < 4
True
>>> 3 > 4
False
>>> 3 == 4
False
>>> 3 != 4
True
>>>

3. Logical operators

Logical operators are what we often call AND, OR, NOT, respectively in python Expressed as and, or, not.

Use logical operators to connect any expressions together and get a Boolean value. For example:

>>> 3 < 4 and 3 > 4
False
>>> 3 < 4 or 3 == 4
True
>>> not 3 < 4
False
>>>

When using logical operators, the most important thing to pay attention to is short-circuit logic (or lazy evaluation), which means: logical operations are from left to right If it is done on the right, if the result has been determined on the left, there will be no more calculations on the right. The specific expression is as follows:

  • For x and y, if x is false, the value of x is returned immediately without executing y; if x is true, the value of y is returned

  • For x or y, if x is true, the value of x is returned immediately without executing y; if x is false, the value of y is returned

For example:

>>> a
Traceback (most recent call last):
  File "<pyshell#21>", line 1, in <module>
    a
NameError: name &#39;a&#39; is not defined

>>> 0 and a
0

>>> 0 or a
Traceback (most recent call last):
  File "<pyshell#23>", line 1, in <module>
    0 or a
NameError: name &#39;a&#39; is not defined

>>> 6 and a
Traceback (most recent call last):
  File "<pyshell#24>", line 1, in <module>
    6 and a
NameError: name &#39;a&#39; is not defined

>>> 6 or a
6
>>>

Since we have not defined variable a in advance, an error will be reported when executing a.

  • For 0 and a, since 0 is first judged to be false (generally 0 represents false in programming languages, non-0 represents true), at this time it can be determined that the entire result is false, so It will return 0 directly without executing a, so no error will be reported.

  • For 0 or a, first judge 0 as false. At this time, it cannot determine whether the entire result is true or false, so it will continue to execute a, so an error will be reported.

  • For 6 and a, first determine whether 6 is true. At this time, it cannot determine whether the entire result is true or false, so it will continue to execute a, so an error will be reported.

  • For 6 or, since 6 is judged to be true first, it can be determined that the entire result is true at this time, so 6 will be returned directly without executing a, so no error will be reported.

Summary: Priority of operators

Let’s summarize the priority of operators, see below Picture:

What are the commonly used operators in Python?

Recommended learning: Python video tutorial

The above is the detailed content of What are the commonly used operators in Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python: Automation, Scripting, and Task ManagementPython: Automation, Scripting, and Task ManagementApr 16, 2025 am 12:14 AM

Python excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.

Python and Time: Making the Most of Your Study TimePython and Time: Making the Most of Your Study TimeApr 14, 2025 am 12:02 AM

To maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.

Python: Games, GUIs, and MorePython: Games, GUIs, and MoreApr 13, 2025 am 12:14 AM

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

Python vs. C  : Applications and Use Cases ComparedPython vs. C : Applications and Use Cases ComparedApr 12, 2025 am 12:01 AM

Python is suitable for data science, web development and automation tasks, while C is suitable for system programming, game development and embedded systems. Python is known for its simplicity and powerful ecosystem, while C is known for its high performance and underlying control capabilities.

The 2-Hour Python Plan: A Realistic ApproachThe 2-Hour Python Plan: A Realistic ApproachApr 11, 2025 am 12:04 AM

You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python: Exploring Its Primary ApplicationsPython: Exploring Its Primary ApplicationsApr 10, 2025 am 09:41 AM

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

How Much Python Can You Learn in 2 Hours?How Much Python Can You Learn in 2 Hours?Apr 09, 2025 pm 04:33 PM

You can learn the basics of Python within two hours. 1. Learn variables and data types, 2. Master control structures such as if statements and loops, 3. Understand the definition and use of functions. These will help you start writing simple Python programs.

How to teach computer novice programming basics in project and problem-driven methods within 10 hours?How to teach computer novice programming basics in project and problem-driven methods within 10 hours?Apr 02, 2025 am 07:18 AM

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment