How to call function which is in one program ...
Shahriar Shamil Uulu
shamilsons at gmail.com
Fri Dec 23 14:57:53 EST 2005
More information about the Python-list mailing list
Fri Dec 23 14:57:53 EST 2005
- Previous message (by thread): How to call function which is in one program ...
- Next message (by thread): How to get the path of current running python script?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Thank you Fredrik Lundh for your help ... it worked ... the problem was in saving of file first.py Fredrik Lundh wrote: > "Shahriar Shamil Uulu" wrote: > > > i got another questions. For example i have two programs in python > > like: first.py, second.py. > > In first.py i have a function test() like: > > # first.py > > ... > > def test(name): > > print name > > > > .... so other functions > > ========================= > > > > #second.py > > > > Question is how i can include first.py into second.py and use function > > test.py. > > # File: second.py > import first > first.test() > > tips: read a Python tutorial *before* you post your next question. start here: > > http://www.python.org/doc/Intros.html > > </F>
- Previous message (by thread): How to call function which is in one program ...
- Next message (by thread): How to get the path of current running python script?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list