Python第九次作业
参考书目:《Python编程从入门到实践》
2018/04/05
10-1.Python学习笔记:在文本编辑器中新建一个文件,写几句话来总结一下你至此学到的Python知识,其中每一行都以“In Python you can”打头。将这个文件命名为learning_python.txt,并将其存储到为完成本章练习而编写的程序所在的目录中。编写一个程序,它读取这个文件,并将你所写的内容打印三次:第一次打印时读取整个文件;第二次打印时遍历文件对象;第三次打印时将各行存储在一个列表中,再在with 代码块外打印它们。
filename = 'learning_python.txt'
list1 = []
with open(filename) as file_object:
contents= file_object.read()
with open(filename) as file_object:
lines= file_object.readlines()
for line in lines :
list1.append(line.rstrip())
print(contents.rstrip())
print(list1)
10-2.C语言学习笔记:可使用方法replace() 将字符串中的特定单词都替换为另一个单词。下面是一个简单的示例,演示了如何将句子中的'dog' 替换为'cat'
>>> message = "I really likedogs."
>>> message.replace('dog', 'cat')
'I really like cats.'
读取你刚创建的文件learning_python.txt中的每一行,将其中的Python都替换为另一门语言的名称,如C。将修改后的各行都打印到屏幕上。
filename = 'learning_python.txt'
with open(filename) as file_object:
contents= file_object.read()
contents = contents.replace('Python','C')
print(contents.rstrip())
10-3.访客:编写一个程序,提示用户输入其名字;用户作出响应后,将其名字写入到文件guest.txt中
filename = 'guest.txt'
name = input("Please input you name:")
with open(filename,'w') as file_object:
contents= file_object.write(name)
10-4.访客名单:编写一个while循环,提示用户输入其名字。用户输入其名字后,在屏幕上打印一句问候语,并将一条访问记录添加到文件guest_book.txt中。确保这个文件中的每条记录都独占一行。
filename = 'guest_book.txt'
with open(filename,'w') as file_object:
pass
while(1):
name= input("Please input you name('quit' is exit'): ")
if(name== 'quit'):
break
print("Hello" + name)
withopen(filename,'a') as file_object:
file_object.write(name+ " has visited.\n")
10-5.关于编程的调查:编写一个while循环,询问用户为何喜欢编程。每当用户输入一个原因后,都将其添加到一个存储所有原因的文件中。
filename = 'reason.txt'
with open(filename,'w') as file_object:
pass
while(1):
reason= input("Please input your reason('quit' is exit'): ")
if(reason== 'quit'):
break
withopen(filename,'a') as file_object:
file_object.write(reason +"\n")
10-6.加法运算:提示用户提供数值输入时,常出现的一个问题是,用户提供的是文本而不是数字。在这种情况下,当你尝试将输入转换为整数时,将引发TypeError 异常。编写一个程序,提示用户输入两个数字,再将它们相加并打印结果。在用户输入的任何一个值不是数字时都捕获TypeError 异常,并打印一条友好的错误消息。对你编写的程序进行测试:先输入两个数字,再输入一些文本而不是数字。
try:
number1= int(input("Please input the first number: "))
except ValueError:
print("Yourinput is not a number")
try:
number2= int(input("Please input the second number: "))
except ValueError:
print("Yourinput is not a number")
else:
print(number1+ number2)
10-7.加法计算器:将你为完成练习10-6而编写的代码放在一个while 循环中,让用户犯错(输入的是文本而不是数字)后能够继续输入数字。
while(1)
try:
number1= int(input("Please input the first number: "))
exceptValueError:
print("Yourinput is not a number")
try:
number2= int(input("Please input the second number: "))
exceptValueError:
print("Yourinput is not a number")
else:
print(number1+ number2)
10-8.猫和狗:创建两个文件cats.txt和dogs.txt,在第一个文件中至少存储三只猫的名字, 在第二个文件中至少存储三条狗的名字。编写一个程序,尝试读取这些文件,并将其内容打印到屏幕上。将这些代码放在一个try-except 代码块中,以便在文件不存在时捕获FileNotFound 错误,并打印一条友好的消息。将其中一个文件移到另一个地方,并确认except代码块中的代码将正确地执行。
try:
withopen("dog.txt") as file1_object:
contents1= file1_object.read()
except FileNotFoundError:
print("Wecan't find 'dog.txt'")
try:
withopen("cat.txt") as file2_object:
contents2= file2_object.read()
except FileNotFoundError:
print("Wecan't find 'cat.txt")
10-9.沉默的猫和狗:修改你在练习10-8中编写的except 代码块,让程序在文件不存在时一言不发。
try:
withopen("dog.txt") as file1_object:
contents1= file1_object.read()
except FileNotFoundError:
pass
try:
withopen("cat.txt") as file2_object:
contents2= file2_object.read()
except FileNotFoundError:
pass
10-10.常见单词:访问项目Gutenberg(http://gutenberg.org/ ),并找一些你想分析的图书。下载这些作品的文本文件或将浏览器中的原始文本复制到文本文件中。你可以使用方法count() 来确定特定的单词或短语在字符串中出现了多少次。例如,下面的代码计算'row'在一个字符串中出现了多少次:
>>> line = "Row, row, rowyour boat"
>>> line.count('row')
2 >
>> line.lower().count('row')
3 请注意,通过使用lower() 将字符串转换为小写,可捕捉要查找的单词出现的所有次数,而不管其大小写格式如何。
编写一个程序,它读取你在项目Gutenberg中获取的文件,并计算单词'the' 在每个文件中分别出现了多少次。
with open("download.txt") asfile_object:
contents= file_object.read()
counter =contents.lowe().count("the")
10-11.喜欢的数字:编写一个程序,提示用户输入他喜欢的数字,并使用json.dump() 将这个数字存储到文件中。再编写一个程序,从文件中读取这个值,并打印消息“I know your favorite number! It's _____.”。
import json
numbers = []
n = 5
while(n):
try:
number= int(input("Please input your favorite number: "))
exceptValueError:
print("Yourinput is not a number")
else:
numbers.append(number)
n-= 1
filename = "numbers.json"
with open(filename,'w') as file_object:
json.dump(numbers,file_object)
with open(filename) as file_object:
numbers= json.load(file_object)
for number in numbers:
print("Iknow your favorite number! It's ", str(number))
10-12.记住喜欢的数字:将练习10-11中的两个程序合而为一。如果存储了用户喜欢的数字,就向用户显示它,否则提示用户输入他喜欢的数字并将其存储到文件中。运行这个程序两次,看看它是否像预期的那样工作。
import json
numbers = []
n = 5
while(n):
try:
number= int(input("Please input your favorite number: "))
exceptValueError:
print("Yourinput is not a number")
else:
numbers.append(number)
n-= 1
filename = "numbers.json"
with open(filename,'w') as file_object:
json.dump(numbers,file_object)
with open(filename) as file_object:
numbers= json.load(file_object)
for number in numbers:
print("Iknow your favorite number! It's ", str(number))
10-13. 略