Statement of Completion#bd327c06
Python Basics
medium
Error Handling Guide
Resolution
Activities
Error Handling in Python¶
Start your journey here!¶
Python code to print hello world using Error Handling try-except
block¶
In [1]:
try:
print("Hello World")
except:
print("Something went wrong")
Hello World
In [ ]:
# write your code here
In [3]:
if True: print('Hello')
Hello
In [6]:
try:
print(3/0)
except ZeroDivisionError:
print("Cannot divide by zero.")
else:
print("Something went wrong.")
Cannot divide by zero.
In [ ]: