Python function's

What are function's. 
Function is a block of organized reusable coad that is used to perform some task. 

Python function keyword...
def keyword used in python programming before function name then curly bracket use before semicolon necessary. 

For example. 
def ratnesh() :
 x=10
 y=10
z=x+y
print(" z") 
ratnesh() 


Comments

Popular posts from this blog

Wap to print PrimeNumber in java programming