Define simple function in Python : Function Define : Function PYTHON examples


PYTHON examples » Function » Function Define »

 

Define simple function in Python


Define simple function in Python
 

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

def test():
    hello()

if __name__ == '__main__': test()

           
         
  



Leave a Comment / Note


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


PYTHON examples

 Navioo Function
» Function Define