Ejecutar una string de código en Python
Dadas unas pocas líneas de código dentro de una variable de string y ejecute el código dentro de la string. Ejemplos: Input: code = «»» a = 6+5 print(a)»»» Output: 11 Explanation: Mind it that «code» is a variable and not python code. It contains another code, which we need to execute. Input: code = «»» … Continue reading «Ejecutar una string de código en Python»