Occurs when a function is called without required arguments.
def greet(name):
print("Hello", name)
greet()TypeError: greet() missing 1 required positional argument: 'name'
def greet(name):
print("Hello", name)
greet("Python")Called the function without the required argument.