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

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



Define a function in Python



def hello (what):
     text = "Hello, " + what + "!"
     print text
 
hello ("World")


           
       
Related examples in the same category
1.  A function definition A function definition
2.  Power function Power function
3.  Define simple function in Python Define simple function in Python
4.  A function that writes the Fibonacci series to an arbitrary boundary A function that writes the Fibonacci series to an arbitrary boundary
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.