vote up 1 vote down star

What does this mean in python:

sock.recvfrom(2**16)

I know what sock is and I get the jest of recvfrom function, but what the hell is 2**16?

flag
10  
Was the Python reference site down? Please ping docs.python.org/reference to see if the site is working from your computer. – S.Lott Nov 5 at 19:53
4  
I suggest that you install Python, run the interactive interpreter, type in 2 ** 16, and see what the result is. – John Machin Nov 5 at 20:46
This is a goofy way to do this, I'd rather see sock.recvfrom(1 << 16), you don't need to do a power operation for this – Paul Betts Nov 5 at 21:29
S.Lott, you're kinda a prick sometimes but a funny prick so it's o :) – Casey Nov 5 at 21:37
@S.Lott, Why so serious? – abyx Nov 5 at 21:40
show 3 more comments

5 Answers

vote up 18 vote down

It is the power operator, see this reference:

http://www.webreference.com/programming/python/

It is equivalent to 216 = 65536

link|flag
1  
In Python (the scope of the OP's) question, 2 ** 16 evaluates to 65536, while 2 ^ 16 evaluates to 18. You appear to attach a strange meaning to "is equivalent to". – John Machin Nov 5 at 20:42
@John: That is why he didn't actually post "2 ^ 16" -_- – Pynt Nov 5 at 23:25
@Pynt: You are gravely mistaken, @rossoft did actually post "2 ^ 16"; subsequent to my comment, @kaiser.se edited the answer to read what you see now, effectively 2<superscript>16</superscript>. You can verify this by clicking on the clickable part of "edited N hours ago". – John Machin Nov 6 at 1:27
Yeah, I figured that was the case...after I had already posted my comment:P – Pynt Nov 6 at 3:39
Exactly, thanks kaiser.se for the edit – rossoft Nov 6 at 7:38
vote up 3 vote down

2 raised to the 16th power

link|flag
vote up 2 vote down

I believe that's the power operator, such that 2**5 = 32.

link|flag
vote up 1 vote down

It is the awesome power operator which like complex numbers is another thing you wonder why more programming languages don't have.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.