Example: two recursive-call function

def chop(word):
  if len(word) > 0:
      print(word)
      chop(w[1:])  # 1st recursive call
      print('---')
      chop(w[1:] ) # 2nd recursive call
      print('*')

Solution

Notes:

Table of Contents