forked from psounis/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise07.initial.py
More file actions
50 lines (50 loc) · 1.89 KB
/
exercise07.initial.py
File metadata and controls
50 lines (50 loc) · 1.89 KB
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
50
family = {
"father": {
"name": "Homer Simpson",
"occupation": "nuclear safety inspector",
"quotes": [
"Lord Help Me, I’m Just Not That Bright",
"Kids, You Tried Your Best And You Failed Miserably. The Lesson Is, Never Try.",
"It Takes Two To Lie; One To Lie, And One To Listen.",
"To Alcohol! The Cause Of, And Solution To, All Of Life's Problems.",
"I Am So Smart! I Am So Smart! S-M-R-T! I Mean S-M-A-R-T!",
"D'Oh!"
]
},
"mother": {
"name": "Marge Simpson",
"occupation": "housewife",
"quotes": [
"Am I Pregnant?",
"And all this time I thought 'Googling yourself' meant the other thing.",
"Homer, we have to do something. Today he's drinking people's blood. Tomorrow he could be smoking.",
"I guess one person can make a difference. But most of the time, they probably shouldn't."
]
},
"children": [
{
"name": "Bart Simpson",
"quotes": [
"Eat My Shorts!",
"I'm Bart Simpson, who the hell are you?",
"You got the brains and talent to go as far as you want and when you do I'll be right there to borrow money"
]
},
{
"name": "Lisa Simpson",
"quotes": [
"Does It Make You Feel Superior To Tear Down People’s Dreams?",
"Pablo Neruda Said, 'Laughter Is The Language Of The Soul.'",
"I Just Think It's A Fantasy. If You Believe In Angels, Why Not Sea Monsters, Unicorns Or Leprechauns?"
]
},
{
"name": "Maggie Simpson",
"quotes": [
"(sucking noise)",
"(crying)",
"Daddy!"
]
}
]
}