高级编程技术(十)

10-1 Python学习笔记 :在文本编辑器中新建一个文件,写几句话来总结一下你至此学到的Python知识,其中每一行都以“In Python you can”打头。将这个文件命名为learning_python.txt,并将其存储到为完成本章练习而编写的程序所在的目录中。编写一个程序,它读取这个文件,并将你所写的内容打印三次:第一次打印时读取整个文件;第二次打印时遍历文件对象;第三次打印时将各行存储在一个列表中,再在with 代码块外打印它们。

with open( 'learning_python.txt') as file_object:
contents = file_object.read()
for line in file_object:
print(line)
lines = file_object.readlines()
for line in lines:
print(line)

10-2 读取你刚创建的文件learning_python.txt中的每一行,将其中的Python都替换为另一门语言的名称,如C。将修改后的各行都打印到屏幕上。

with open( "learning_python.txt") as file_object:
lines = file_object.readlines()
for line in lines:
line.replace( 'python', 'c')

10-3 访客 :编写一个程序,提示用户输入其名字;用户作出响应后,将其名字写入到文件guest.txt中。

name = input( "please input your name")
with open( 'guest.txt', 'w') as file_object:
file_object.write(name)

10-5 关于编程的调查 :编写一个while 循环,询问用户为何喜欢编程。每当用户输入一个原因后,都将其添加到一个存储所有原因的文件中。

with open( 'reason.txt', 'a') as file_object:
while( True):
reason = input( "why you love program?")
file_object.write(reason)

10-6 加法运算 :提示用户提供数值输入时,常出现的一个问题是,用户提供的是文本而不是数字。在这种情况下,当你尝试将输入转换为整数时,将引发TypeError 异常。编写一个程序,提示用户输入两个数字,再将它们相加并打印结果。在用户输入的任何一个值不是数字时都捕获TypeError 异常,并打印一条友好的错误消息。对你编写的程序进行测试:先输入两个数字,再输入一些文本而不是数字。

number1 = input( "please input the first number")
number2 = input( "please input the second number")
try:
answer = int(number1) + int(number)
except TypeError:
print( "your input is illegal")
else:
print(answer)

10-8 猫和狗 :创建两个文件cats.txt和dogs.txt,在第一个文件中至少存储三只猫的名字,在第二个文件中至少存储三条狗的名字。编写一个程序,尝试读取这些文件,并将其内容打印到屏幕上。将这些代码放在一个try-except 代码块中,以便在文件不存在时捕获FileNotFound 错误,并打印一条友好的消息。将其中一个文件移到另一个地方,并确认except 代码块中的代码将正确地执行。

file1 = 'cat.txt'
file2 = 'dog.txt'
try:
with open(file1) as file_object:
contents = file_object.read()
except FileNotFound:
print( 'sorry we can not find this file')
else:
print(contents)

你可能感兴趣的:(高级编程技术(十))