26 May
2000
26 May
'00
2:46 p.m.
Steve Drees wrote:
How does one do this?
Suppose you have a file, test.py, and in it you have a method def printHere(): print 'Here' Suppose also that you wish to call that method from another file, SecondFile.py. In SecondFile.py: import test test.printHere() ciao DR