1 2 3 4 5 6 7 8 9 10
# calling a function from a function def f(x): print(x + 1) def g(x): f(2 * x) f(4 * x) g(3)