Define simple function in Python : Function Define : Function : Python examples (example source code) Organized by topic

C++
PHP
Python
Python Home »  Function   » [  Function Define  ]  Screenshots 
 



Define simple function in Python




def hello():
    print "Hello, world!"

def test():
    hello()

if __name__ == '__main__': test()

           
       
Related examples in the same category
1.  A function definition A function definition
2.  Power function Power function
3.  A function that writes the Fibonacci series to an arbitrary boundary A function that writes the Fibonacci series to an arbitrary boundary
4.  Define a function in Python Define a function in Python
5.  Factorial function Factorial function
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.