I read the following python code:
a=2**b
I know several languages like c,c++,c#,java... i even googled ** operator without any results.
so what does 2**b means?
|
I read the following python code:
I know several languages like c,c++,c#,java... i even googled ** operator without any results. so what does 2**b means? |
|||
|
it's simple |
||||
|
|
|
It is the exponentiation operator. In your example, Check out the last entry in the table in this section. |
|||
|
|
|
It's python's power operator. You can write this as |
|||||
|
|
In that example ** does represent exponation. but **(and also * ) can be used as unpacking operators. for instance when using a list of variables of unknown length as args for a function. I'm new to programming and python so I have difficulty using this in an example. perhaps one of you more experienced users can demonstrate |
||||
|
|
|
Prints:
|
|||
|
|
|
It means 2^b in other languages. Or math.pow(2, 4) if you were using the math module. See operator documentation here: http://docs.python.org/library/stdtypes.html#numeric-types-int-float-long-complex |
|||
|
|
This means to raise 2 to the power b. See http://docs.python.org/library/stdtypes.html#numeric-types-int-float-long-complex |
|||
|
|
2^b(but^means XOR in Python, so**is used for the power – mykhal Oct 17 '11 at 12:552**0.5is 1.414 (=sqrt(2)) and2**-0.5is 0.707. – cfi Oct 17 '11 at 13:48**is not uncommon these days. – cfi Oct 17 '11 at 13:50