Python3 学习笔记(十)文件和异常

Python3 学习笔记(十)文件和异常

参考书籍《Python编程:从入门到实践》【美】Eric Matthes

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

file_name = 'learning_python.txt'
with open(file_name) as file:
    content = file.read()
    print(content)

file_name = 'learning_python.txt'
with open(file_name) as file:
    for line in file:
        print(line.rstrip())

file_name = 'learning_python.txt'
with open(file_name) as file:
    lines = file.readlines()

for line in lines:
    print(line.rstrip())

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

file_name = 'learning_python.txt'
with open(file_name) as file:
    for line in file:
        line = line.replace('Python', 'javascript').rstrip()
        print(line)

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

file_name = 'guest.txt'
with open(file_name, 'w') as file:
    name = input('Please enter your name:')
    file.write(name)

编写一个while 循环,提示用户输入其名字。用户输入其名字后,在屏幕上打印一句问候语,并将一条访问记录添加到文件guest_book.txt中。确保这个文件中的每条记录都独占一行。

file_name = 'guest_book.txt'
with open(file_name, 'a') as file:
    while True:
        name = input('Please enter your name:')
        if name == 'quit':
            break
        file.write(name + '\n')

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

number_0 = input('Please enter a number: ')
number_1 = input('Please enter another number: ')

try:
    number_0 = int(number_0)
    number_1 = int(number_1)
except ValueError:
    print('Please enter two numbers')
else:
    print('The result is: ' + str(number_0 + number_1))

将编写的代码放在一个while 循环中,让用户犯错(输入的是文本而不是数字)后能够继续输入数字。

while True:
    number_0 = input('Please enter a number: ')
    number_1 = input('Please enter another number: ')
    try:
        number_0 = int(number_0)
        number_1 = int(number_1)
    except ValueError:
        print('Please enter two numbers')
    else:
        print('The result is: ' + str(number_0 + number_1))

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

def open_file(file_name):
    try:
        with open(file_name) as file:
            for line in file:
                print(line.rstrip())
    except FileNotFoundError:
        print('Can not find file: ' + file_name)

open_file('cats.txt')
open_file('dogs.txt')

修改编写的except 代码块,让程序在文件不存在时一言不发。

def open_file(file_name):
    try:
        with open(file_name) as file:
            for line in file:
                print(line.rstrip())
    except FileNotFoundError:
        pass

open_file('cats.txt')
open_file('dogs.txt')

编写一个程序,它读取文件,并计算单词’the’ 在每个文件中分别出现了多少次。

def count_word(file_name, word):
    try:
        with open(file_name) as file:
            count = 0
            for line in file:
                count += line.count(word)
            print('There are ' + str(count) + ' ' + word + ' words in file ' + file_name)
    except FileNotFoundError:
        pass

count_word('Alice in Wonderland.txt', 'the')

编写一个程序,提示用户输入他喜欢的数字,并使用json.dump() 将这个数字存储到文件中。再编写一个程序,从文件中读取这个值,并打印消息“I know your favorite number! It’s ___.”。

# write
import json
file_path = 'number.json'

try:
    with open(file_path, 'w') as file_obj:
        number = input('Pleas enter your favorite number: ')
        json.dump(number, file_obj)
except FileNotFoundError:
    pass
# read
import json
file_path = 'number.json'

try:
    with open(file_path) as file_obj:
        number = json.load(file_obj)
        print('I know your favorite number! It\'s ' + number)

except FileNotFoundError:
    pass

将两个程序合而为一。如果存储了用户喜欢的数字,就向用户显示它,否则提示用户输入他喜欢的数字并将其存储到文件中。运行这个程序两次,看看它是否像预期的那样工作。

import json
file_path = 'number.json'

try:
    with open(file_path) as file_obj:
        number = json.load(file_obj)
        print('I know your favorite number! It\'s ' + number)

except FileNotFoundError:
    with open(file_path, 'w') as file_obj:
        number = input('Pleas enter your favorite number: ')
        json.dump(number, file_obj)
        print('I have remember your favorite number: ' + number)

你可能感兴趣的:(Python)