forked from CoreyMSchafer/code_snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheafp.py
49 lines (34 loc) · 938 Bytes
/
eafp.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
39
40
41
42
43
44
45
46
47
48
49
# Duck Typing and Easier to ask forgiveness than permission (EAFP)
class Duck:
def quack(self):
print('Quack, quack')
def fly(self):
print('Flap, Flap!')
class Person:
def quack(self):
print("I'm Quacking Like a Duck!")
def fly(self):
print("I'm Flapping my Arms!")
def quack_and_fly(thing):
pass
# Not Duck-Typed (Non-Pythonic)
# if isinstance(thing, Duck):
# thing.quack()
# thing.fly()
# else:
# print('This has to be a Duck!')
# LBYL (Non-Pythonic)
# if hasattr(thing, 'quack'):
# if callable(thing.quack):
# thing.quack()
# if hasattr(thing, 'fly'):
# if callable(thing.fly):
# thing.fly()
# try:
# thing.quack()
# thing.fly()
# thing.bark()
# except AttributeError as e:
# print(e)
d = Duck()
print(type(dir(d)))