Document 10c
Document 10c
Pass
Def check_marks_validity(marks):
Try:
Marks = int(marks)
If marks < 0:
Except ValueError:
Except MarksError as e:
Except Exception as e:
# Catches any other unexpected exceptions
Check_marks_validity(marks_input)
Output