我正在使用Python 2.7 pythonwin。python如何導入腳本
我創建自己的自定義模塊這樣的:
def fib(n): # write Fibonacci series up to n
a, b = 0, 1
while b < n:
print b,
a, b = b, a+b
def fib2(n): # return Fibonacci series up to n
result = []
a, b = 0, 1
while b < n:
result.append(b)
a, b = b, a+b
return result
文件名是fiboo.py
現在我想開的PythonWin並將其導入。我應該在哪裏放fiboo.py
?
我的腳本路徑是:
D:\fiboo.py
我的系統變量中沒有Pythonpath。我該怎麼辦? –
剛創建變量 – sharcashmo
它的價值是什麼?另外,什麼是'$ home' –