Help for this page

Select Code to Download


  1. or download this
     test(def _(x): print("You are in block %s" % x))
  2. or download this
    >>> def _(x):
    ...     print("You are in block %s" % x)
    ...
    back in test
    You are in block 2
    test lambda a: print("You are in block %s" % a)