1: Add code to handle the exception occurring in the code.
2: Make the necessary correction in the program to remove the error.
3: Make the following changes in the code, execute, observe the results. Add code to handle the errors occurring in each case.
Case – 1: Initialize m_list as ["1",2,3,4]
Case – 2: Initialize m_list as given below
mark1="A"
mark1=int("A")
m_list=[mark1,2,3,4]
Case – 3: Initialize m_list as []
Case – 4: Make the following change in the for loop statement
for i in range(0, len(mark_list)+1):
SOLUTION:
0 Comments