What will be the output of the following Python function? print(2**3**2,…
2026
What will be the output of the following Python function?
print(2**3**2, (2**3)**2, 2**(3*2))
Answer: A. 512 64 64
- A.
512 64 64
- B.
512 512 512
- C.
64 64 64
- D.
64 64 512
Attempted by 362 students.
Show answer & explanation
Correct answer: A
Loading lesson…