Reusable blocks of code that perform specific tasks.
def function_name(): #function body # ... #calling the function function_name()
def greet(): print("hello") greet()