Module 4 Flashcards
Which part of your code lets you place pieces of code that might result in exceptions?
The try: branch of a try-except Block
What happens when an operation cannot be completed due to a lack of memory?
Python raises a Memory error
What does yield do?
It’s used like return but it released a series of return values over time
So:
def simpleYield():
yield 1
yield 2
yield 3
for val in simpleYield():
print(val)
Output:
1
2
3
What is another name for a function that uses yield instead of return?
A generator function
What does the raise keyword do?
It allows you to raise an exception
So you can simulate raising an actual exception
What is the output of the following code?
name = ‘John’
def scope_test():
print(name)
global x
x = 123
scope_test()
print(x)
John
123
you can define global variables inside a function by using the global keyword
So the print(x) accesses the global variable, x, and prints it.
Can you have a variable named the same as a functions’ parameter?
Yes. But it’s not a good way to build your code, as it might be confusing later
What is the output of the following code?
def nameFunc(name):
print(“hello there,”, name)
name = ‘Cass’
nameFunc(‘William’)
print(name)
hello there, William
Cass
The parameter named ‘name’ is a completely different entity from the variable named ‘name’
So Python will not confuse the two. Though it is not a good way to write your code, as it could become confusing
Can functions and variables have the same name?
No.
It may cause unforeseen logic errors and exceptions
How do you write a valid except clause?
except ExceptionName as ExceptionVar
So, for example, a ZeroDivision except clause would be:
except ZeroDivisionErorr as e