1 #!/usr/bin/env python 2 3 def f(a, b, c): 4 return b 5 6 def h(a, b, c=f(5, 4, 3)): 7 return c 8 9 result_3 = h(1, 2, 3) # h(c=3) -> 3 10 result_4 = h(1, 2) # h(c=f(5, 4, 3)) -> h(c=f(b=4)) -> h(c=4) -> 4 11 12 # vim: tabstop=4 expandtab shiftwidth=4