Not every function needs to return something. Some just do an action: python def print_header(): print("=" * 40) print("Welcome to My Program") print("=" * 40) This function prints a header.
It doesn't calculate or return anything. When a function has no return statement, it returns None automatically. None means "no value" in Python.