Learn Python The Hard Way 习题41详解
标签: Python 博客
博主最近在学习Python,看的书是Learn Python The Hard Way(Third Edition), 前40道习题没有什么难度,但是看到习题41的时候,由于出现了很多新函数和新名字以及印刷错误,竟然没看懂这道题的目的。查询了一些函数的用法之后,现在把这道题搞清楚了,分享出来,希望能对其他新手有所帮助。
1、印刷错误
译者:王巍巍
版次:2014年11月第1版
印刷时间:2015年5月北京第3次印刷
具体错误:
#fake class names
for word in class_names:
result = result.replace("%%%", word, 1)
# fake other names
for word in other_names:
result = result.replace("***", word, 1)
# fake parameter lists
for word in param_names:
result = result.replace("@@@", word, 1)
results.append(result)
上面的一段代码在书中是Line47~Line59,这一段代码应该全部再缩进一格,即这段代码处于for sentence in snippet, phrase:
的循环中,具体可以参考Exercise 41: Learning To Speak Object Oriented
2、本节新函数介绍
2.1strip()
首次出现位置:Line30
函数原型:str.strip([chars])
参数:chars – 移除字符串头尾指定的字符,默认为空格
返回值:返回移除字符串头尾指定的字符生成的新字符串,移除的是chars中的任意字符
实例:
>>> a = " 123"
>>> print a.strip()
123
>>> a ="123abc"
>>>print a.strip("1cb")
23a
2.2capitalize()
首次出现位置:Line34
函数原型:str.capitalize()
参数:None
返回值:返回一个首字母大写,其余字母小写的字符串
实例:
>>> a = "this is a book called HARRY POTTER"
>>> print a.capitalize()
This is a book called harry potter
2.3random.sample()
首次出现位置:Line35
函数原型:random.sample(sequence, k)
参数:sequence是一个list,k是一个整数
返回值:返回一个list,该list由sequence中随机的k个元素组成,sequence不变
实例:
>>>list = [1,2,3,4,5,6,7,8,9,10]
>>>slice = random.sample(list,5)
>>>print slice
[3,6,8,2,4]#截取的序列元素并没有顺序
2.4count()
首次出现位置:Line35
函数原型:str.count(sub, start= 0,end=len(str))
参数:
- sub – 搜索的子字符串
- start – 字符串开始搜索的位置,默认为第一个字符,第一个字符索引值为0
- end – 字符串中结束搜索的位置,字符中第一个字符的索引为0,默认为字符串的最后一个位置
返回值:返回子字符串在字符串中出现的次数
实例:
>>>a = "this is a book called HARRY POTTER"
>>>print a.count("i")
2
2.5join()
首次出现位置:Line42
函数原型:str.join(sequence)
参数:sequence – 要连接元素的list
返回值:返回通过str连接序列中元素后生成的字符串
实例:
>>>str = "-"
>>>seq = ["a","b","c"]
>>>print str.join(seq)
a-b-c
2.6replace()
首次出现位置:Line49
函数原型:str.replace(old, new[, max])
参数:
- old – 将被替换的子字符串。
- new – 新字符串,用于替换old子字符串。
- max – 可选字符串, 替换不超过 max 次
返回值:返回以new代替old不超过max次的新字符串
实例:
>>>a = "this is a book called HARRY POTTER"
>>>print a.replace("is", "was", 1)
thwas is a book called HARRY POTTER
>>>print a.replace("is", "was")
thwas was a book called HARRY POTTER
2.7keys()
首次出现位置:Line67
函数原型:dict.keys()
参数:None
返回值:返回一个字典所有的键
实例:
>>>dict = {
"name":"moverzp", "age":"23", "height":"180"}
>>>print dict.keys()
['age','name','height']
2.8shuffle()
首次出现位置:Line68
函数原型:random.shuffle(lst)
参数:lst – 可以是一个序列或者元组
返回值:None. 直接修改lst的顺序
实例:
>>>list = [1, 2, 3, 4]
>>>random.shuffle(list)
>>>print list
[3, 1, 4, 2]
>>>random.shuffl