I am using python 2.7 by pythonwin.
I have created my own custom modules like this:
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
The file name is fiboo.py
Now i want to open pythonwin and import it. where should I put the fiboo.py?
my script path is:
D:\fiboo.py