close

1.Module 使用

  (1) 假設寫了一個file 叫 test.py

       def iotest(a):

print "a:",a

return

  (2) 在別的檔案(ex:use.py)要使用"test.py"裡的函數時(如果use.py &test.py在同一個目錄底下) 只要

import test

a=[]

test.iotest(a)

  (3)在使用Module(test.py)時 它會透過$PYTHONPATH來找Module的位置

      所以 如果use.py &test.py不再在同一個目錄底下則要把"test.py"的路徑貼到$PYTHONPATH裡


import sys
sys.path.append('/TEST') #假設test.py 放在 '/TEST'

print sys.path #看一下路徑


import test

a=[]

test.iotest(a)

 

more detail

more detail2

more detail3

 

 

arrow
arrow
    全站熱搜
    創作者介紹

    quantum2nd 發表在 痞客邦 留言(0) 人氣()