Re: Having lots of fun passing parameters ... help!

2007-06-18 Thread DAC
On 18 Jun, 14:57, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > DAC wrote: > > I've defined a single method in Python using: > > > def funcAdjacents(inputWord, outputFile): > >... > >lots of boring stuff > >... > > > and then called it using: > > > funcAdjacents("SampleWord","outputFi

Re: Having lots of fun passing parameters ... help!

2007-06-18 Thread Diez B. Roggisch
DAC wrote: > I've defined a single method in Python using: > > def funcAdjacents(inputWord, outputFile): >... >lots of boring stuff >... > > > and then called it using: > > funcAdjacents("SampleWord","outputFile.file") > > Which works OK in Python - I get the results I want. But