Go deh!
Mainly Tech projects on Python and Electronic Design Automation.
Sunday, February 25, 2007
Pythons Function
Nested
Parameter Definitions
›
(And I don't mean nested function definitions). Whilst reading PEP3107 on what's coming this year in Python 3000 I came across this ...
2 comments:
Friday, February 09, 2007
unzip un-needed in Python
›
Someone blogged about Python not having an unzip function to go with zip(). unzip is straight-forward to calculate because: >>> t1 ...
16 comments:
Saturday, January 20, 2007
Python example: from 1997 to now.
›
I stumbled on an old site: My Programming Language Crisis of ~1997. There is a data-mining example, complete with sample input data and ...
6 comments:
Tuesday, January 02, 2007
Data Mining: in three languages
›
I answered this post with a reply written in AWK then wrote versions in Perl and Python. You sshould be aware that I have writen more awk, ...
Wednesday, December 13, 2006
merits of Lisp vs Python
›
Excerpts from my posts to the comp.lang.python thread about Lisp vs Python : Date: Fri, Dec 8 2006 10:05 pm Mark Tarver wrote: > H...
Wednesday, July 12, 2006
Python Functions: Assignments And Scope
›
Explaining why this works: n = [0] def list_access (): n[0] = n[0] + 1 return n try : print " \n list_access: ", list_...
7 comments:
Saturday, June 17, 2006
Psycho re-run
›
I don't normally use Psycho, and did not have it installed with my python2.4 installation. Whilst searching for something else however, ...
2 comments:
Sunday, May 21, 2006
Function Attributes assigned by decorator
›
It appears to be straight forward to initialize function attributes by a decorator (the setup function). The new function factory looks a lo...
Python function attributes
›
Prompted by a presentation were someone said Python doesn't have full closures (noodle.odp), I looked at their example given and thought...
3 comments:
Saturday, March 18, 2006
What's wrong with Perl
›
It can be a refreshing tonic of a language when you move to perl from something like basic, C or Java. Perl can do what tens of Unix tools s...
14 comments:
‹
›
Home
View web version