Files
Learn-Python-Programming-Th…/ch03/for.else.py
T
adii1823 8b802c5c62 ch03
2021-10-28 17:34:45 +05:30

12 lines
255 B
Python

class DriverException(Exception):
pass
people = [('James', 17), ('Kirk', 9), ('Lars', 13), ('Robert', 8)]
for person, age in people:
if age >= 18:
driver = (person, age)
break
else:
raise DriverException('Driver not found.')