-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathE3-5.py
39 lines (29 loc) · 996 Bytes
/
E3-5.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (C) Deepali Srivastava - All Rights Reserved
# This code is part of Python course available on CourseGalaxy.com
class Employee:
allowed_domains = {'yahoo.com', 'gmail.com', 'outlook.com'}
def __init__(self,name,email):
self.name = name
self.email = email
def display(self):
print(self.name, self.email)
@property
def email(self):
return self._email
@email.setter
def email(self, new_email):
domain = new_email[new_email.index('@')+1 : ]
if domain in Employee.allowed_domains:
self._email = new_email
else:
raise RuntimeError(f'Domain {domain} is not allowed')
e1 = Employee('John','john@gmail.com')
e2 = Employee('Jack','jack@yahoo.com')
e3 = Employee('Jill','jill@outlook.com')
e4 = Employee('Ted','ted@yahoo.com')
e5 = Employee('Tim','tim@xmail.com')
e5.display()
e4.email = 'ted@ymail.com'
e4.display()
e3.email = 'jill@gmail.com'
e3.display()