《Python编程快速上手》实践项目:疯狂填词

一.项目要求:

创建一个疯狂填词(Mad Libs)程序,它将读入文本文件, 并让用户在该文本文件中出现 ADJECTIVE、 NOUN、 ADVERB 或 VERB 等单词的地方, 加上他们自己的文本。

例如,一个文本文件可能看起来像这样:

The ADJECTIVE panda walked to the NOUN and then VERB. A nearby NOUN was unaffected by these events.

程序将找到这些出现的单词, 并提示用户取代它们。

Enter an adjective: 
silly 
Enter a noun: 
chandelier 
Enter a verb: 
screamed 
Enter a noun: 
pickup truck 

以下的文本文件将被创建:

The silly panda walked to the chandelier and then screamed. A nearby pickup

truck was unaffected by these events.

结果应该打印到屏幕上, 并保存为一个新的文本文件。

二.项目源码

#疯狂填词-替换文本文件中的单词
'''
	方法步骤:
		1.导入文本
		2.循环查找并替换
		3.打印结果,保存为另一个新的文件
'''
#打开文件,并读取内容
myFile = open('words.txt','r')
myNewFile = open('newwords.txt','w')
text = myFile.read()

wordsReplace = ['TEXT','HAVE','TOTAL','CHARACTERS']
wordsLength = len(wordsReplace)

#替换单词
for i in range(wordsLength):
	print('Enter an '+ wordsReplace[i].lower()+' :')
	word = input()
	text = text.replace(wordsReplace[i],word)

#将新的文本装入一个新的文件中
myNewFile.write(text)

#关闭文件
myFile.close()
myNewFile.close()

你可能感兴趣的:(Python笔记,python)