首页 > 编程语言 >Python Operator Precedence – Learn how to perform operations in Python

Python Operator Precedence – Learn how to perform operations in Python

时间:2022-09-24 03:00:17浏览次数:78  
标签:operations Precedence precedence Python operators perform expressions expression

Python Operator Precedence – Learn how to perform operations in Python

here are many different types of operators. When evaluating complex expressions like 5+2*4%6-1 and 13 or 3 one might easily get confused about in which order the operations will be performed.

This Python operator precedence article will help you in understanding how these expressions are evaluated and the order of precedence Python follows.

Python Operators Precedence Table

Here we have a table that is arranged in the ascending order of precedence of operators.

The new Assignment expression (:=) operator from Python 3.8 onwards has the lowest precedence while parentheses() have the highest precedence.

Operator Description
:= Assignment expression (Lowest precedence) 
lambda Lambda expression
if-else Conditional expression
or Boolean OR
and Boolean AND
not x Boolean NOT
<, <=, >, >=,  Comparison operators
!=, == Equality operators
in, not in, is, is not, Identity operators, membership operators
| Bitwise OR
^ Bitwise XOR
& Bitwise AND
<<, >> Left and right Shifts
+, – Addition and subtraction
*, @, /, //, % Multiplication, matrix multiplication, division, floor division, remainder
+x, -x, ~x Unary plus, Unary minus, bitwise NOT
** Exponentiation
await x Await expression
x[index], x[index:index], x(arguments…), x.attribute Subscription, slicing, call, attribute reference
(expressions…), [expressions…],

 

{key: value…}, {expressions…}

Binding or parenthesized expression, list display, dictionary display, set display
() Parentheses (Highest precedence) 

 

Python Operators Precedence Rule – PEMDAS

You might have heard about the BODMAS rule in your school’s mathematics class. Python also uses a similar type of rule known as PEMDAS.

P – Parentheses
E – Exponentiation
M – Multiplication
D – Division
A – Addition
S – Subtraction

The precedence of operators is listed from High to low. To remember the abbreviations, we have a funny mnemonic “Please Excuse My Dear Aunt Sally”.

 

标签:operations,Precedence,precedence,Python,operators,perform,expressions,expression
From: https://www.cnblogs.com/chucklu/p/16724838.html

相关文章

  • Why is exponentiation applied right to left? Python
    Whyisexponentiationappliedrighttoleft?回答1The**operatorfollowsnormalmathematicalconventions;itisright-associative:Intheusualcomputersc......
  • Maximum and Minimum values for ints Python
    https://docs.python.org/3/library/sys.html#sys.int_infosys.int_infoAnamedtuplethatholdsinformationaboutPython’sinternalrepresentationofintegers......
  • What do these operators mean (** , ^ , %, //)? [closed] Python
    Whatdotheseoperatorsmean(**,^,%,//)?[closed] 回答1**:exponentiation  指数^:exclusive-or(bitwise) 异或%:modulus//:dividewithinte......
  • 学习笔记:python (2)
    python学习1.列表形式如下:names=['liuyufan','yebenhao','luyuhang']调用列表中的内容:names=['liuyufan','yebenhao','luyuhang']print=name[0]#输出li......
  • 学习笔记:python(1)
    python学习1.HelloWorldprint("HelloWorld!")注意与c语言不同输出函数为print而不是printf2.数据类型(1)字符串:可用“”表示!注意例:“asdhas”中“a”是第0个字符......
  • 入门Python,看完这篇就行了!
    转载请注明出处❤️作者:测试蔡坨坨原文链接:caituotuo.top/3bbc3146.html你好,我是测试蔡坨坨。众所周知,Python语法简洁、功能强大,通过简单的代码就能实现很多实用、有趣......
  • python入门第三课
    pycharm下载与使用JETBRAINS官网:https://www.jetbrains.com/pycharm/1.免费版功能太少(community)我们尽量使用收费版(professional)30天试用。选择版本就选一......
  • 这个Python 0day 已存在15年,已影响超过35万个开源项目
    这个Python0day已存在15年,已影响超过35万个开源项目https://mp.weixin.qq.com/s/-00LEYzwa9HFg3Oam7LJqw这个Python0day已存在15年,已影响超过35万个开源项目RavieL......
  • python注释、变量、数据类型详细
    1.python注释什么是注释?注释是对代码的解释说明,写注释是为了下次来看能更快的理解,抵抗遗忘。单行注释:文字之前加警号pycharm中有快捷键ctrl+?#这是单行注释......
  • Python实验报告——第4章 序列的应用
    实验报告【实验目的】 1.掌握python中序列及序列的常用操作。2.根据实际需要选择使用合适的序列类型。【实验条件】1.PC机或者远程编程环境。 【实验内容】1.......