0
How this is done >>>(1+__)**2=16
1 Respuesta
+ 3
Divyansh Tripathi
** is known as exponentiation value so
2**2 = 2 * 2 = 4
4**2 = 4 * 4 = 16
5**2 = 5 * 5 = 25
So (1 + 3) **2 = 4 * 4 = 16
https://kodify.net/JUMP_LINK__&&__python__&&__JUMP_LINK/math/exponents/#:~:text=The%20first%20way%20to%20raise,Python%20Docs%2C%20n.d.%20c).&text=The%20**%20operator%20returns%20a,0.0%20to%20a%20negative%20power.