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
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