gpt4 book ai didi

python - **的操作顺序

转载 作者:太空宇宙 更新时间:2023-11-04 07:48:31 26 4
gpt4 key购买 nike

我想知道为什么会出现以下情况。下面的代码首先评估右侧 1**3 然后 2**1

2**1**3 has the value of 2

但是,对于下面的代码,左侧 7//3 首先被计算,然后是 2*3。最后 1+6-1=6

1+7//3*3-1 has the value of 6

最佳答案

看看 documentation of operator precedence .虽然乘法*和floor除法//的优先级相同,但还是要注意这部分:

Operators in the same box group left to right (except for exponentiation, which groups from right to left).

关于 213 被计算为右关联的约定,请参阅数学堆栈交换网站上的跨站点欺骗:What is the order when doing xyz and why?

TL;DR 是这样的:因为左关联版本 (xy)z 将恰好等于 xy*z,对同一事物使用另一个(更差的)符号是没有用的,因此求幂应该是右结合的。

关于python - **的操作顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59113587/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com