1
+ #!/usr/bin/python
2
+ # -*- coding: utf-8 -*-
3
+ # @author: xxx
4
+
5
+ #作业1:对照 day9 sample-code 打一遍代码
6
+ #
7
+ #作业2: (选做)模拟下面的过程,用今天学到的知识
8
+ #【场景模拟】
9
+ #
10
+ # 老爸在看一本英文书,他旁边有一个词典,但是只有三个词的解释
11
+ # abandon “to give up to the control or influence of another person or agent”
12
+ # abase “to lower in rank, office, prestige, or esteem ”
13
+ # abash “to destroy the self-possession or self-confidence of ”
14
+ #
15
+ # 老爸先查了一个单词 'etiquette' 没有查到
16
+ # 老爸怒了,把含有 'abandon' 一页的单词撕掉了
17
+ # 然后老爸又差了一个单词 'abase' 得到了解释
18
+ # 老爸很开心,有把 'abandon' 加入到了字典里
19
+ #
20
+ def homework1 ():
21
+ dictionary = {
22
+ 'good' :'of a favourable chacter' , #不要忘记逗号
23
+ 'none' :'not any such thing or person'
24
+ }
25
+
26
+ print len (dictionary )
27
+ print dictionary .keys ()
28
+ print dictionary .values ()
29
+ print dictionary .has_key ('good' ) #圆括号
30
+ dictionary ['bad' ]= 'no good' #方括号
31
+ dictionary ['bad' ]= 'failing to reach an acceptable standard'
32
+ del dictionary ['bad' ]
33
+ if dictionary .has_key ('none' ):
34
+ print dictionary ['good' ]
35
+ for key in dictionary .keys ():
36
+ print key
37
+ print dictionary [key ]
38
+ def homework2 ():
39
+ print '老爸在看一本英文书'
40
+ dictionary = {
41
+ 'abandon' :'to give up to the control or influence of another person or agent' ,
42
+ 'abase' :'to lower in rank, office, prestige, or esteem' ,
43
+ 'abash' :'to destroy the self-possession or self-confidence of'
44
+ }
45
+ if dictionary .has_key ('etiquette' ):
46
+ print dictionary ['etiquette' ]
47
+ del dictionary ['abandon' ]
48
+ if dictionary .has_key ('abase' ):
49
+ print dictionary ['abase' ]
50
+ dictionary ['abandon' ]= 'to give up to the control or influence of another person or agent'
51
+
52
+ if __name__ == '__main__' :
53
+ homework1 ()
54
+ homework2 ()
0 commit comments