NEW
Font size
WorksheetsExceptions - Python Study Guide
Total questions: 10
Worksheet time: 5mins
What will this code print?
Was not defined
NameError
val3
3
What does "try" do in Python
Attempt the code
Run code if a condition is fulfilled
Save a program
Stop the code from running
What does this code print?
Was not defined
3
9
NameError
What does this code print?
9
Was not defined
err0Rrr
TypeError
What does "finally" do in Python
Run code after a "try" no matter what
Run code at the end of the program
Add code to program
Help control errors
What does this code print?
None
Yeah ! Your answer is: 1
Sorry ! You are dividing by zero
Yeah ! Your answer is: 4
What does "else" do in a "try" block in Python?
Run code after the block if nothing triggers
Execute code if no exception happens
Run code after try block
Create 3 errors
What does this code do?
Print("An exception flew by!")
print("An exception flew by!")
print("An exception flew by!")
NameError('HiThere')
NameError('HiThere')
What does 'raise' do?
Create an error
Runs a line of code if a condition is fulfilled
Run a code even if errors happen
Stop the program
What is 'except as'?
Runs a line of code if a error happens
Makes a variable to store errors
Removes errors
Runs a line of code if a error happens for a specific variable
