Introduction to Functions and Procedures
In Structured Programming, functions and procedures are reusable blocks of code that allow programs to be organized in a modular manner. These elements make it easier to break down code into smaller, more manageable chunks, which improves code clarity and maintainability.
Functions
A function is a block of code that performs a specific task when called. Functions in Structured Programming can accept parameters as input and return results as output. In Python, functions are defined with the def
keyword. Here's an example:
# Example of a function in Python
def add(a, b):
return a + b
result = add(5, 3)
print("Sum result:", result)
In this example, the sum
function accepts two parameters a
and b
, and returns their sum. The function is then called with arguments 5 and 3, and the result is printed.
Procedures
A procedure is similar to a function, but it doesn't return a value. Procedures are used to execute a sequence of statements without returning a result. In Python, they are implemented similarly to functions, but without the return
keyword. Here's an example:
# Example of a procedure in Python
def greet(name):
print("Hello,", name)
greet("Juan")
In this example, the greet
procedure accepts a name
parameter and simply prints a custom greeting. The procedure is then called with the argument "John".
Parameters and arguments
Parameters are variables used to pass information to functions and procedures. Arguments are the actual values passed to the parameters when the function or procedure is called. It is possible to define parameters with default values to make a function more flexible. Here is an example:
# Function with default parameters
def greet(name, message="Hello"):
print(message + ",", name)
greet("Ana")
greet("Carlos", "Hi!")
In this example, the greet
function has an optional message
parameter with the default value "Hello." The function is called twice, once with just the name and once with a custom message.
Recursion
Recursion is a concept where a function calls itself to solve a smaller problem. It is useful for solving problems that can be broken down into smaller, identical subproblems. Here is a classic example of recursion, calculating the factorial:
# Example of recursion in Python
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n - 1)
result = factorial(5)
print("Factorial of 5:", result)
In this example, the factorial
function calls itself to calculate the factorial of a number n
.
Variable Scope
Variable scope determines where in the program a variable is valid and can be used. In Python, variables defined within a function are local to that function unless otherwise specified. Global variables are accessible from anywhere in the program. Here's an example:
# Example of variable scope in Python
def example():
local_variable = "Local"
print("Inside the function:", local_variable)
example()
global_variable = "Global"
print("Outside the function:", global_variable)
In this example, local_variable
is local to the example
function and can only be accessed within that function. global_variable
, on the other hand, can be accessed from anywhere in the program.
Conclusion
Functions and procedures are fundamental blocks of code in Structured Programming. They allow code to be divided into smaller, more manageable units, promoting reuse and modularity. Understanding how to define, use, and organize functions and procedures will allow you to write clearer, more efficient, and more maintainable programs. Practice with examples and experiment with different situations to strengthen your understanding and skills in Structured Programming.