Functions Flashcards

1
Q

What are functions?

A

A handy way of taking a complex set of instructions and packaging them
together inside a block of code that has a name given to them

Is written to complete a specific task

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are 3 advantages of using functions?

A
  1. Helps organize code into blocks
  2. Making the program more readable and easier to update or modify
  3. Functions can be reused, preventing redundancy
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Functions in Python are defined using the “___” keyword, followed by the
function name and parentheses

The parentheses may contain “_______” parameters

A

Def

Optional

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the syntax for defining a function in python?

A

Syntax:
def function_name(parameter1, parameter2, …):
# Function code

The function code block consists of statements and can contain any valid
Python code

The function code can include variable declarations, control flow statements, and other function calls

A colon is used to indicate the beginning of the function’s code block

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Function calls are made by using the function name followed by parentheses

What does this look like? After you define the first function

A

Example:
def my_first_function():
# Do this…
# Do that…
# Do something else…

my_first_function()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do we modify a function (a message)?

A

We need to look more closely at the parenthesis in the function call

We can add the name of a variable inside those parenthesis

This variable, with the value passed in, can then be used inside the function definition

Ex.

def my_first_function(something):
# Do this with something…
# Do that with something…
# Do something else…

my_first_function(123)

^ Vaule of 123 gets passed to something

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In this example…

def my_first_function(something):
# Do this with something…
# Do that with something…
# Do something else…

My_first_function(123)

Something is the “_________”

123 is the “_________”

A

Something is the parameter
= is the name of the data that is being passed to the function

123 is the argument
= is the data that is being passed to the function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Functions can have “________” parameters and be called with multiple “________”

What does this look like?

A

Multiple; arguments

def my_first_function(something, anotherthing):
# Do this with something…
# Do that with something…
# Do something else with anotherthing…

my_first_function(123, 789)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are positional arguments?

Give an example

A

They are the most basic type of arguments in python

They are passed to a function based on their position or order

They order of the arguments MATTER & must MATCH the functions parameter order

def my_first_function(a, b, c, d):
# Do this with a…
# Do that with b…
# Do something else with c and d…

my_first_function(1, 2, 3, 4)
w/in the function:
a = 1
b = 2
c = 3
d =4

my_first_function(2, 3, 4, 1)
w/in the function:
a = 2
b = 3
c = 4
d = 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In the function we wrote, “local_good_morning(name, location)”…

What happens when you change the order of arguments that are passed into the function?

A

The answer of the name and location SWITCH places the the written statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are keyword arguments?

Give an example

A

Keyword arguments allow you to pass arguments to a function using
their parameter names

The arguments are specified as key-value pairs, separated by commas

This way, you can pass arguments in any order

Keyword arguments make the code more readable and self- explanatory

However, it makes your code a bit longer

def my_first_function(a, b, c, d):
# Do this with a…
# Do that with b…
# Do something else with c and d…

my_first_function(a=1, b=2, c=3, d=4)
a = 1
b = 2
c = 3
d = 4

my_first_function(b=2, c=3, d=4, a=1)
a = 1
b = 2
c = 3
d = 4

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is variable scope in functions?

Give an example

A

Variable scope refers to the accessibility and visibility of variables within a program

Variables defined inside a function have different scopes

Local scope
= is the scope of variables defined inside a function

Variables declared inside a function are accessible only within that
function

They cannot be accessed outside the function

Example of local scope of variable
“message”:

def greet():
message = “Hello, World!” # Local variable
print(message)

greet()
print(message) # Error: NameError: name ‘message’ is not defined

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Functions can call other functions, what does this mean?

Give an example

A

A function call executes the code within the called function

This allows for code reuse and modular programming

Functions are called by using their name followed by parentheses

The called function’s code is executed before returning to the calling
function

Ex:

def greet():
print(“Hello!”)

def welcome():
greet()
print(“Welcome!”)

welcome() # Calling the welcome()function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Give an example of a local variable scope

A

def funcB(a,b):
a = 2
b = 3
print(“Inside funcB a,b = “, a, b)

def funcA():
a = 10
b = 20
funcB(a,b)
print(“Inside funcA a,b = “, a, b)

funcA()

OUTPUT:
Inside funcB a,b = 2 3
Inside funcA a,b = 10 20

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the “return” statement in python and what does it do?

Give an example

A

It allows functions to send back a value as output

By using the return statement,
= a function can provide a result or data to the caller

The return statement is followed
= by the value or expression to be returned

When the return statement is encountered
= the function immediately exits

The returned value can be stored in a variable or used directly.

Ex:

def add(a, b):
return a + b

result = add(3, 4)
print(result)

# Output: 7

17
Q

What are multiple return values?

Give an example

A

A function can return multiple values by separating them with commas

The returned values:
= can be assigned to multiple variables

Ex:

def calc_circle_properties(radius):
circumference = 2 * 3.14159265 * radius
area = 3.14159265 * radius * radius
return circumference, area

circumference, area = calc_circle_properties(7)
print(“Circumference:”, circumference)
print(“Area:”, area)

Output:
Circumference: 43.982297100000004
Area: 153.93803985000002

18
Q

What are variables local to functions?

Give an example

A

Local variables are defined within a function and have local scope

They are only accessible within the function where they are defined

Local variables can have the same name as global variables without any conflict
= they are considered separate entities

When accessing a variable within a function…
= python searches for the
variable locally (within the function scope) before checking the global
scope

Ex:

def foo(x):
y = 1
x += 5
print(“in foo() y=”,y)
print(“in foo() x=”,x)

x = 10

foo(x)

print(“x=”,x)
#print(“y=”,y)

#This statement would give an error because y was local to foo()