笨办法学python3习题41学习面向对象术语--笔记

“%%%”, “***”, “@@@”只是要替换的随机选择的单词
random模块
random模块作用是返回随机数,只要跟随机元素相关的,都可以使用它
random.random()函数是这个模块中最常用的方法了,它会生成一个随机的浮点数,范围是在0.0~1.0之间。

random.uniform()正好弥补了上面函数的不足,它可以设定浮点数的范围,一个是上限,一个是下限。
random.randint()随机生一个整数int类型,可以指定这个整数的范围,同样有上限和下限值

random.choice()可以从任何序列,比如list列表中,选取一个随机的元素返回,可以用于字符串、列表、元组等。

random.shuffle()如果你想将一个序列中的元素,随机打乱的话可以用这个函数方法。

random.sample()可以从指定的序列中,随机的截取指定长度的片断,不作原地修改。
capitalize()
capitalize()将字符串的第一个字母变成大写,其他字母变小写。

>>>s = 'a, B'
>>> s.capitalize()
'A, b'

count()
count() 方法用于统计字符串里某个字符出现的次数。可选参数为在字符串搜索的开始与结束位置。
str.count(sub, start= 0,end=len(string))
sub – 搜索的子字符串
start – 字符串开始搜索的位置。默认为第一个字符,第一个字符索引值为0。
end – 字符串中结束搜索的位置。字符中第一个字符的索引为 0。默认为字符串的最后一个位置。

str = "this is string example....wow!!!";
print "str.count(wow) : ", str.count(wow)
str.count(sub) :  1#结果

join()
join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。

str = "-";
seq = ("a", "b", "c"); # 字符串序列
print str.join( seq );
a-b-c   #结果

replace()

str.replace(old, new[, max])

replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。
keys()
keys() 函数以列表返回一个字典所有的键。

dict = {'Name': 'Zara', 'Age': 7}

print "Value : %s" %  dict.keys()
#以上实例输出结果为:

Value : ['Age', 'Name']

附上代码:

import random
from urllib.request import urlopen
import sys

WORD_URL = "http://learncodethehardway.org/words.txt"
WORDS = []

PHRASES = {
	"class %%%(%%%):":
	  "Make a class named %%% that is-a %%%",
	"class %%%(object):\n\tdef __init__(self,***)":
	  "class %%% has-a __init__ that takes self and *** params.",
	"class %%%(object):\n\tdef ***(self,@@@)":
	  "class %%% has-a function *** that takes self and @@@ params.",
	"*** = %%%()":
	  "Set *** to an instance of class %%%.",
	"***.***(@@@)":
	  "From *** get the *** function , call it with params self,@@@.",
	"***.*** = '***'":
	  "From *** get the *** attribute and set it to '***'."
}

# do they want to drill phrases frist   他们想要翻译短语吗?
if len(sys.argv) == 2 and sys.argv[1] =="english":
	PHRASE_FIRST = True
else:
	PHRASE_FIRST =False

# load up the words from the website 加载网站上的文字
for word in urlopen(WORD_URL).readlines():   #将网页中文字一行一行送给word
	WORDS.append(str(word.strip(),encoding = "utf-8")) #将空格删掉追加给WORDS里面


def convert(snippet,phrase):
#将WORDS里面的单词随机排列后一个首字母大写赋给class_names
	class_names = [w.capitalize() for w in
					random.sample(WORDS,snippet.count("%%%"))]
	other_names = random.sample(WORDS,snippet.count("***"))
	results = []
	param_names = []

	for i in range(0,snippet.count("@@@")):
		param_count = random.randint(1,3)
		param_names.append('_'.join(
			random.sample(WORDS,param_count)))
#用下划线连接随机的WORDS单词追加给param_names
	for sentence in snippet, phrase:
		result = sentence[:]

		# 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)

	return results


	#keep going until they hit CTRL-D
try:
	while True:
		snippets = list(PHRASES.keys())
		random.shuffle(snippets)

		for snippet in snippets:
			phrase = PHRASES[snippet]
			question,answer = convert(snippet,phrase)
			if PHRASE_FIRST:
				question,answer = answer,question

				print(question)

				input(">")
				print(f'ANSWER:{answer}\n\n')
except EOFError:
	print("\nBye")

你可能感兴趣的:(笨办法学python3习题41学习面向对象术语--笔记)