Picture of the authorDevGrads

Functions

Reusable blocks of code that perform specific tasks.

Syntax

def function_name(): 
  #function body
  # ...

#calling the function
function_name()

Example

def greet():
  print("hello")

greet()