2005/12/20, Fredrik Lundh <
[EMAIL PROTECTED]>:
"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
-- http://mail.python.org/mailman/listinfo/python-list