#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ ENGG1811 Lecture Week 4 An example of run-time error """ # %% b = 3 c = 0 if c != 0: d = b / c else: print('Division by zero. Something not right')