Am 15.05.19 um 15:26 schrieb Atharva Khare:
I think in python, you use Lambda Expressions. Here is how I would do it in python3:import math f = lambda x: math.cos(x) + x d_f = lambda x: (f(x + 1e-8) - f(x)) * 1e8
Lambda expressions are indeed Python's anonymous functions, but no Python programmer would create a lambda expression only to assign it to a variable. Doing this in an article to "sell" Smalltalk might well have the opposite effect.
Konrad.