What is the difference between the following codes?
code1:
var=2**2*3
code2:
var2
The ** operator in Python is really "power;" that is, 2**3 = 8.
**
2**3 = 8