>>> def myFunc(): ... print "myFunc prints!" ... >>> def execFunc(function): ... function() ... >>> execFunc(myFunc) myFunc prints! >>>
Archive for May, 2008
Python is way more modular than I though!
Posted by Gasten on May 22, 2008
Posted in Computers | 2 Comments »