Help for this page

Select Code to Download


  1. or download this
    def foo(one,two=None,*args,**kwargs) :
        pass
    
  2. or download this
     foo(1)
     foo(1,2)
     foo(two=3,one=4,'fubar',three=42)