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?
|
|
|||||
|
|
|
try:
and
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. |
||||||||
|
|
|
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. |
||
|
|
|
|
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 in all cases, rather than in this specific case alone. This could get you in big trouble if x is anything but 2.
|
||
|
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
The |
||
|
|
|
|
2**2 = 2 power-of 2 2*2 = 2 times 2 |
||
|
|
|
|
Double stars ( |
||||||||||||||||
|