+ 1
Exec function
How does the 'exec' function in Python work? What effects does the exec function have on the code?
2 Respostas
+ 3
Basically, it executes a piece of code. Here you have more information:
- https://www.w3schools.com/JUMP_LINK__&&__python__&&__JUMP_LINK/ref_func_exec.asp
- https://www.programiz.com/python-programming/methods/built-in/exec
+ 1
Thank you for your answer.