What will be the output of the following Python code? ```python print(2 ** 3) ```

Explanation:

The ** operator is used for exponentiation, so 2 ** 3 equals 8.