Posts by João Victor Anderle • 11 points
1 post
-
1
votes0
answers58
viewsQ: How to dynamically define the function to be called in Python
Hello, I would like the program user to write a function for later use, however I’m having difficulty to implement this: See the example below: def funcao_integracao(x): y=x**2 return y def…