vote up 3 vote down star

What is the difference between the following codes?

code1

var=2**2*3

code2

var2=2*2*3

I see no difference. This raises the following question.

Why is the code1 used if we can use code2?

flag

4  
When you make tests with numbers follow these 2 rules: only use prime numbers (you were ok) and never use 2 twice. – Luc M Jun 25 at 19:35

8 Answers

vote up 13 vote down check

try:

2**3*2

and

2*3*2

To see the difference.

**

Is the operator for "power of"

In your particular operation 2 power of 2 yields the same as 2 times 2.

link|flag
Thank you for your answer! – Masi Jun 25 at 16:33
5  
docs.python.org/reference/… and docs.python.org/reference/… are important @Masi, consider reading them. – S.Lott Jun 25 at 16:48
@S.Lott: Thank you for the links! – Masi Jun 25 at 22:50
vote up 1 vote down

A double asterisk means to the power of. A single asterisk means multiplied by. 22 is the same as 2x2 which is why both answers came out as 4.

link|flag
vote up 2 vote down

To specifically answer your question Why is the code1 used if we can use code2? I might suggest that the programmer was thinking in a mathematically broader sense. Specifically, perhaps the broader equation is a power equation, and the fact that both first numbers are "2" is more coincidence than mathematical reality. I'd want to make sure that the broader context of the code supports it being

var = x * x * y
in all cases, rather than in this specific case alone. This could get you in big trouble if x is anything but 2.

link|flag
vote up 1 vote down

The top one is a "power" operator, so in this case it is the same as 2 * 2 equal to is 2 to the power of 2. If you put a 3 in the middle position, you will see a difference.

link|flag
vote up 4 vote down
  2**2 means 2 squared (2^2)
  2*2 mean 2 times 2 (2x2)

  In this case they happen to have the same value, but

  3**3*4 != 3*3*4
link|flag
vote up 1 vote down

The ** operator in Python is really "power;" that is, 2**3 = 8.

link|flag
vote up 1 vote down

2**2 = 2 power-of 2

2*2 = 2 times 2

link|flag
vote up 16 vote down

Double stars (**) are exponentiation. So "2 times 2" and "2 to the power 2" are the same. Change the numbers and you'll see a difference.

link|flag
4  
In fact, the double stars are pretty commonly used in any language where the carat (^) is reserved for bitwise XOR operations. I don't think I've seen double stars with any other meaning than exponentiation. – Mark Rushakoff Jun 25 at 16:26
1  
They were used in FORTRAN a long, long time ago. – David Thornley Jun 25 at 16:39
2  
Double star was introduced as power in Fortran which doesn't have bitwise operator symbols. – mgb Jun 25 at 16:39
2  
Curious fact: Google uses both ^ and ** – Oscar Reyes Jun 25 at 16:49

Your Answer

Get an OpenID
or

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