filmov
tv
Write a Python Script to Implement ZeroDivisionError and IndexError

Показать описание
Hello Programmers, Welcome to my channel.
In this video you will learn about how to Write a Python Script to Implement ZeroDivisionError and IndexError
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
"""
Write a Python Script to Implement ZeroDivisionError and IndexError
"""
try:
print(4 / 0)
except ZeroDivisionError:
print("Zero division is not possible")
fruits = ["apple", "banana"]
try:
print(fruits[2])
except IndexError:
print("List Index you are trying to access is not present")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners
In this video you will learn about how to Write a Python Script to Implement ZeroDivisionError and IndexError
Python Scripts
======================
Python Functions Solved
==========================
Python Programs Solved
============================
Code
=============================
"""
Write a Python Script to Implement ZeroDivisionError and IndexError
"""
try:
print(4 / 0)
except ZeroDivisionError:
print("Zero division is not possible")
fruits = ["apple", "banana"]
try:
print(fruits[2])
except IndexError:
print("List Index you are trying to access is not present")
Keywords
=============================
#python #python3 #python_assignment #pythonprogramming #pythontutorial #pythonprojects #pythoncourse #pythonbaba #pythonforbeginners #pythonautomation #pythonbasic #pythonbeginners