Define and use Modules : Module : Language Basics PYTHON examples


PYTHON examples » Language Basics » Module »

 

Define and use Modules





# Fibonacci numbers module

#//File: fibo.py
def fib(n):    # write Fibonacci series up to n
    a, b = 01
    while b < n:
        print b,
        a, b = b, a+b

def fib2(n): # return Fibonacci series up to n
    result = []
    a, b = 01
    while b < n:
        result.append(b)
        a, b = b, a+b
    return result

import fibo

fibo.fib(1000)

fibo.fib2(100)

fibo.__name__
'fibo'

#//If you intend to use a function often you can assign it to a local name:

fib = fibo.fib
fib(500)

           
       



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Language Basics
» Module