gpt4 book ai didi

python - ** 数学运算符在 Python 中的作用是什么?

转载 作者:IT老高 更新时间:2023-10-28 22:10:48 25 4
gpt4 key购买 nike

这在 Python 中是什么意思:

sock.recvfrom(2**16)

我知道 sock 是什么,并且了解了 recvfrom 函数的要点,但是 2**16 到底是什么?具体来说,两个星号/双星号运算符?


(英文关键词,因为很难搜索到这个:times-times star-star asterisk-asterisk double-times double-star-double-asterisk operator)

最佳答案

power operator .

来自 Python 3 文档:

The power operator has the same semantics as the built-in pow() function, when called with two arguments: it yields its left argument raised to the power of its right argument. The numeric arguments are first converted to a common type, and the result is of that type.

相当于216 = 65536,或者pow(2, 16)

关于python - ** 数学运算符在 Python 中的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1683008/

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